You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
module.exports={
...
module: {loaders: [{test: /.s?css$/,use: [MiniCssExtractPlugin.loader,'css-loader','sass-loader'],},],},plugins: [newMiniCssExtractPlugin({filename: '[name].[contentHash].css',chunkFilename: '[id].[name].[contentHash].css',}),],optimization: {minimize: true,minimizer: [newCssMinimizerPlugin({minimizerOptions: {// When we change these options, the hash of the asset should also changepreset: ['default',{discardEmpty: false}],},})],},};
The text was updated successfully, but these errors were encountered:
Expected Behavior
entry.40909804e9379fa0a37f.css
minimizerOptions
entry.other_hash.css
Actual Behavior
entry.40909804e9379fa0a37f.css
minimizerOptions
entry.40909804e9379fa0a37f.css
Hash does not change.
Code
The text was updated successfully, but these errors were encountered: