Make comments generated by SASS start from the project root instead of the file system root

For comments generated by SASS, is there a way to specify the location of a file starting from the root of the project, and not from the root of the file system?

Now I have:

file:///Users/user-1/Sites/mysite/sass/_base.scss

And it would be great to have:

sass/_base.scss

Thus, we do not encounter conflicts / overrides like this:

file:///Users/user-1/Sites/mysite/sass/_base.scss
file:///Users/user-2/Sites/mysite/sass/_base.scss
+5
source share
1 answer

There is no configuration option that allows you to create line comments created using sass-generated objects in relation to the project root.

, , . , , , , , / . , , , , .

, , , config/environments/production.rb:

config.assets.compress = true
0

All Articles