-
-
Notifications
You must be signed in to change notification settings - Fork 484
Closed
Description
Why bootstrap css is not minimized when using extractStyles and bootstrapCustomizations and appStyles
and when using appStyles and bootstrapCustomizations adds 3-4s to hot module replacement to reload
{
test: /\.scss$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ['css-loader?minimize&importLoaders=2', 'postcss-loader', 'sass-loader']
})
},
{
test: /\.css$/,
use: ExtractTextPlugin.extract({
fallback: "style-loader",
use: ['css-loader?minimize&importLoaders=1', 'postcss-loader']
})
}
Using latest dependencies