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
Hi,
I currently have the following configuration:
{ test: /\.scss$/, use: [ { loader: MiniCssExtractPlugin.loader }, { loader: "css-loader" }, { loader: "postcss-loader", options: { parser: 'sugarss' } }, { loader: "group-css-media-queries-loader" }, { loader: "sass-loader" } ] }
And when I run webpack", I get the following error:
TypeError: Cannot read property 'sourceMap' of null
I can fix the issue easily like this:
{ loader: "group-css-media-queries-loader", options: { sourceMap: false } }
However, it would be cool to be able not to specify any options, for example, for the people who are using the following syntax:
use: [MiniCssExtractPlugin.loader, "css-loader", "postcss-loader", "group-css-media-queries-loader", "sass-loader"]
Currently, the syntax above is not supported.
Cheers
The text was updated successfully, but these errors were encountered:
Oh, that's a great case. I fixed this problem!
Sorry, something went wrong.
Man, issues don't stay open very long with you ha ha 👍
These problems are not so complicated
True.
I just tested it and it works as expected now 👍
No branches or pull requests
Hi,
I currently have the following configuration:
And when I run webpack", I get the following error:
I can fix the issue easily like this:
{ loader: "group-css-media-queries-loader", options: { sourceMap: false } }
However, it would be cool to be able not to specify any options, for example, for the people who are using the following syntax:
use: [MiniCssExtractPlugin.loader, "css-loader", "postcss-loader", "group-css-media-queries-loader", "sass-loader"]
Currently, the syntax above is not supported.
Cheers
The text was updated successfully, but these errors were encountered: