This repository has been archived by the owner on Feb 18, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 214
CSS + SASS #871
Comments
You should be able to follow a similar pattern as the one for LESS: https://spectrum.chat/?t=a60e9355-9e30-4ba5-af0b-36ed8a40eda3 |
@eliperelman Thanks for you help.
|
edmorley
added a commit
that referenced
this issue
May 18, 2018
Since unless the default file extension regex is overridden, the `.sass` (old style) or `.scss` (new style) Sass styles will not be seen by `sass-loader`: https://github.com/webpack-contrib/sass-loader#examples https://sass-lang.com/documentation/file.SASS_REFERENCE.html Closes #755. Closes #803. Refs #871.
Have implemented Sass and Less middlewares recently that excellently integrate with the core |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
I would like to use sass with sass-loader but I also need to import a css file.
The index.js file has the following imports
import './path/to/file.css'
import './path/to/file.sass'
It's a react application so in the neutrino/react configuration I have:
After this I'm able to import .sass files but not css ones.
How can I have the sass-loader and still be able to import css files.
Thx
The text was updated successfully, but these errors were encountered: