From 8ebd6649503c6626129c7c362545e06080fe64b3 Mon Sep 17 00:00:00 2001 From: Olzzon Date: Thu, 10 Oct 2019 09:37:37 +0200 Subject: [PATCH] fix: Webpack build - removed Babili and css mini extract plugins --- webpack.build.config.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/webpack.build.config.js b/webpack.build.config.js index daad6dc2..adc20b9c 100644 --- a/webpack.build.config.js +++ b/webpack.build.config.js @@ -44,16 +44,9 @@ module.exports = { new HtmlWebpackPlugin({ title: 'Sisyfos Audio Controller' }), - new MiniCssExtractPlugin({ - // Options similar to the same options in webpackOptions.output - // both options are optional - filename: 'bundle.css', - chunkFilename: '[id].css' - }), new webpack.DefinePlugin({ 'process.env.NODE_ENV': JSON.stringify('production') - }), - new BabiliPlugin() + }) ], stats: { colors: true,