Reputation: 21
I have start using SCSS for the frontend, and can setup it correctly with PhpStorm on the a MacBook Pro with Mojave installed.
Then I setup the file watcher:
But it does not work. Something what I not seeing here?
Upvotes: 0
Views: 879
Reputation: 93728
If you like the .css
files to be generated in the same folder as original file, try the following settings:
Note the Create output file from stdout option - it has to be enabled, as node-sass
writes CSS to stdout unless the -o
option is passed.
If you like to place generated files in a separate folder, use the -o
option:
Upvotes: 1