Is there anyway to import a regular css file with sass's @import command? While I'm not using all of the SCSS syntax from sass, I do still enjoy it's combining/compressing features, and would like to be able to use it without renaming all of my files to *.scss
|
feedback
|
|
Looks like this is unimplemented, as of the time of this writing: | |||
|
feedback
|
|
You must prepend an underscore to the css file to be included, and switch its extension to scss (ex:
And it will include the contents of the file, instead of using the CSS standard @import directive. | |||
|
feedback
|
|
Simple. @import "path/to/file.css"; | |||||||||
feedback
|
|
I was under the impression that @import is part of regular CSS? | |||||
feedback
|
|
If I am correct css is compatible with scss so you can change the extension of a css to scss and it should continue to work. Once you change the extension you can import it and it will be included in the file. If you don't do that sass will use the css @import which is something you don't want. | |||
feedback
|