diff options
Diffstat (limited to 'vnext/webpack.config.js')
-rw-r--r-- | vnext/webpack.config.js | 5 |
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', |