Skip to content

Commit

Permalink
Fix issue where webpack was unable to load TinyMCE bundle styles
Browse files Browse the repository at this point in the history
because files with relative resources were imported as with (inline) instead of (css)
  • Loading branch information
datakurre committed May 23, 2018
1 parent c835b59 commit 1d944a9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mockup/patterns/tinymce/less/pattern.tinymce.less
@@ -1,5 +1,5 @@
@import (inline) "@{bowerPath}tinymce-builded/js/tinymce/skins/lightgray/skin.min.css";
@import (inline) "@{bowerPath}tinymce-builded/js/tinymce/skins/lightgray/content.min.css";
@import (css) "@{bowerPath}tinymce-builded/js/tinymce/skins/lightgray/skin.min.css";
@import (css) "@{bowerPath}tinymce-builded/js/tinymce/skins/lightgray/content.min.css";
@import (inline) "@{bowerPath}tinymce-builded/js/tinymce/plugins/visualblocks/css/visualblocks.css";
@import "@{mockupPath}/modal/pattern.modal.less";
@import "@{mockupPath}/autotoc/pattern.autotoc.less";
Expand Down

0 comments on commit 1d944a9

Please sign in to comment.