This loader optimizes the output of mini-css-extract-plugin
and/or css-loader
,
entirely removing the potentially large CSS classname mappings normally inlined into your bundle when using CSS Modules.
Run npm install constant-locals-loader
, then make these changes in your Webpack config:
module.exports = {
module: {
rules: [
{
test: /\.css$/,
use: [
+ 'constant-locals-loader',
{
loader: MiniCSSExtractPlugin.loader,
options: {
+ esModule: true,
},
},
{
loader: 'css-loader',
options: {
modules: true,
+ localsConvention: 'camelCaseOnly',
+ esModule: true,
},
},
],
},
],
},
plugins: [new MiniCSSExtractPlugin({})],
};
Hi, again ;) Your code have little bug. Which produce extra
;
. I have fixed it in my forked version https://gist.github.com/SinimaWath/8000f919bd53621b6ecf6706ffb9076e#file-constant-locals-loader-js-L18by adding a
;
to regexp