From ba20d48aace9931ce7ab53753cf87aa297435de1 Mon Sep 17 00:00:00 2001 From: limichange Date: Wed, 22 Dec 2021 17:54:42 +0800 Subject: [PATCH] set HtmlWebpackPlugin cache as false --- webpack-react/webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack-react/webpack.config.js b/webpack-react/webpack.config.js index 81333b5..0047b30 100644 --- a/webpack-react/webpack.config.js +++ b/webpack-react/webpack.config.js @@ -52,6 +52,7 @@ module.exports = (env, argv) => ({ 'global': {} // Fix missing symbol error when running in developer VM }), new HtmlWebpackPlugin({ + cache: false, inject: "body", template: './src/ui.html', filename: 'ui.html',