From 68be0338fcf75b877ed30f7241a5460fe9d0bd11 Mon Sep 17 00:00:00 2001 From: LordMathis Date: Sun, 12 Aug 2018 15:52:27 +0200 Subject: [PATCH] Remove webpack plugins --- webpack.config.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index a1ee9dc..da607ab 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -1,7 +1,6 @@ const { resolve, join } = require('path') const webpack = require('webpack') const ManifestPlugin = require('webpack-manifest-plugin'); -const CleanWebpackPlugin = require('clean-webpack-plugin') const config = { mode: 'development', @@ -70,7 +69,6 @@ const config = { new webpack.NoEmitOnErrorsPlugin(), new webpack.NamedModulesPlugin(), new ManifestPlugin({'writeToFileEmit': true}), - new CleanWebpackPlugin(['public/static'], {}), ] } module.exports = config