Disable map files on SASS
That depends on the implementation.
For node-sass and ruby-sass try this:
sass --sourcemap=none --watch style.scss:style.css
If you're using dart-sass the usage is --no-source-map
:
sass --no-source-map --watch style.scss:style.css
it's works:
sass --watch --no-source-map input.scss output.css
with
1.8.0 compiled with dart2js 2.0.0-dev.66.0
Works:
sass --sourcemap=none style.scss style.css
Doesn't work, still generate .map file:
sass --update --sourcemap=none style.scss:style.css
So make sure you have no --update
flag
I'm using sass version 1.13.2 compiled with dart2js 2.0.0
on Ubuntu
and it's sass --no-source-map --watch [source].scss:[target].css
as --source-map
enables source map and --no-source-map
disables it.