From da9fe2b2b5a3e00a12b706c547f77431c346149e Mon Sep 17 00:00:00 2001 From: Yukai Huang Date: Wed, 2 Nov 2016 21:49:31 +0800 Subject: [PATCH] Do not use hash for html.min.css --- webpack.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webpack.config.js b/webpack.config.js index f9d9a6d..236490b 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -28,6 +28,6 @@ module.exports = [Object.assign({}, baseConfig, { filename: '[name].js' }, plugins: [ - new ExtractTextPlugin("html.min.[hash].css") + new ExtractTextPlugin("html.min.css") ] }];