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
It's normal for a library with css to output a ***.css and a ***.min.css. But now there is no way just using webpack and css-loader
***.css
***.min.css
The text was updated successfully, but these errors were encountered:
@e-cloud can it help you?
{ test: /\.css$/, loader: 'css?-minimize' }
-minimize will disable minification.
-minimize
Sorry, something went wrong.
Not working: any idea?
const extractCssLoaders = [{ loader: 'css-loader', options: { modules: true, camelCase: true, localIdentName: cssScopedName, importLoaders: 1, minimize: false, }, },{ loader: 'resolve-url-loader', },{ loader: 'postcss-loader', options: { plugins: [ autoprefixer({ browsers: config.browserlist }), ], }, },{ loader: 'sass-loader', }];
minimize
Close in favor #650
No branches or pull requests
It's normal for a library with css to output a
***.css
and a***.min.css
.But now there is no way just using webpack and css-loader
The text was updated successfully, but these errors were encountered: