Why I see scss file in my chrome inspector?
Because there are map
files in your CSS
folder like *.css.map
and *.scss.map
. It basically reverse maps the global.css
which is being used by the browser to the constituent .scss
files. They are there because it makes it helpful for a developer to debug and know exactly which .scss
file the code is in. If you don't want them delete the .map
files.
标签:scss,map,chrome,see,file,inspector From: https://www.cnblogs.com/chucklu/p/17861453.html