Reputation: 63
I was wondering when compiling a SASS file (scss) if you can designate where it creates the .css.map file just having trouble finding the parameters documentation.
I'm assuming it would be something along the lines of "--sourcemap="XXX"
Thanks
Upvotes: 1
Views: 149
Reputation: 1008
There are no additional options for --sourcemap
nor for the sourcemap = true
in your config.rb
However, you can move the map and manually edit the sourceMappingURL comment at the bottom of the generated CSS file after processing: /*# sourceMappingURL=directory/app.css.map */
Upvotes: 1