We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SASS language allow us to import multiple files in on @import. For example:
@import "a/x", "a/y" ;
However I'am getting this error: File to import not found or unreadable: a/y
File to import not found or unreadable: a/y
This is a small example, in my project I've a lot of kind these @import.
My webpack loader config
{ test: /\.scss$/, use: [ MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader', { loader: 'sass-resources-loader', options: { resources: [ './src/sass/app.scss', './src/sass/mixins/*.scss' ] }, } ] }
The text was updated successfully, but these errors were encountered:
Hi @betorobson!
Sorry, something went wrong.
For sure we are doing a work around, which is a import per file.
I will have a look at source code and maybe I can do a PR for you :)
No branches or pull requests
SASS language allow us to import multiple files in on @import. For example:
However I'am getting this error:
File to import not found or unreadable: a/y
This is a small example, in my project I've a lot of kind these @import.
My webpack loader config
The text was updated successfully, but these errors were encountered: