-
Notifications
You must be signed in to change notification settings - Fork 94
New issue
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
css loader invalid options in stylesOverlay.js #343
Comments
I had the same issue, some dependency did load the |
I should say it compiled for me. I have no longer any css in my output :( |
I was able to get it to work again by no longer using the just function I put following in {
module: {
rules: [
{
test: /\.css$/i,
use: ["style-loader", "css-loader"],
},
],
},
},
{
module: {
rules: [
{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
"style-loader",
// Translates CSS into CommonJS
"css-loader",
// Compiles Sass to CSS
"sass-loader",
],
},
],
},
}, it would help if there would be documentation what versions of the dependency used are actual compatible. |
I finally found the issue in the code that lead to this error. When And all invocations of the |
Hello!
I have the same error as here #236
css file:
using in code:
package.json:
The text was updated successfully, but these errors were encountered: