-
-
Notifications
You must be signed in to change notification settings - Fork 63
Open
Labels
Description
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
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'
]
},
}
]
}