aboutsummaryrefslogtreecommitdiff
path: root/vnext/webpack.config.js
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2020-10-15 22:31:34 +0300
committerGravatar Vitaly Takmazov2023-01-13 10:37:55 +0300
commitc60863e79f7ec338b3697018775622dc66ab1bb6 (patch)
tree130e06109d73ad15611a7bf31c084cf7864fa0f1 /vnext/webpack.config.js
parent965f4d7704c7580efb4fb9ee9cf29ace20e04e6a (diff)
Cleanup webpack configuration
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r--vnext/webpack.config.js5
1 files changed, 2 insertions, 3 deletions
diff --git a/vnext/webpack.config.js b/vnext/webpack.config.js
index a8e28f49..29af95b5 100644
--- a/vnext/webpack.config.js
+++ b/vnext/webpack.config.js
@@ -48,7 +48,7 @@ module.exports = (env, argv) => {
postcssOptions: {
plugins: [
'stylelint',
- ['postcss-preset-env', { stage: 0, autoprefixer: { grid: true } }]
+ 'postcss-preset-env'
]
}
}
@@ -83,8 +83,7 @@ module.exports = (env, argv) => {
plugins: [
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new MiniCssExtractPlugin({
- filename: 'Juick.[contenthash].css',
- allChunks: true
+ filename: 'Juick.[contenthash].css'
}),
new HtmlWebPackPlugin({
template: './src/index.html',