diff options
author | Vitaly Takmazov | 2017-08-29 12:44:43 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-08-29 12:44:43 +0300 |
commit | 863bc8259b38699c013e78a32aa030fb1563ffa2 (patch) | |
tree | b00cb92a3c6174540eebf95739246b3c9b8643a4 /juick-www | |
parent | 6840b088c90273f490a397a3c7ff2d67a58549a0 (diff) |
webpack: using hash in css too
Diffstat (limited to 'juick-www')
-rw-r--r-- | juick-www/webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/juick-www/webpack.config.js b/juick-www/webpack.config.js index 20e2c32b..dc0373fe 100644 --- a/juick-www/webpack.config.js +++ b/juick-www/webpack.config.js @@ -31,7 +31,7 @@ module.exports = { plugins: [ new webpack.optimize.ModuleConcatenationPlugin(), new StyleLintPlugin({ configFile: '.stylelintrc.json', context: 'src/main/static', files: ['**/*.css'], emitErrors: false }), - new ExtractTextPlugin({ filename: "style.[chunkhash].css", allChunks: true }), + new ExtractTextPlugin({ filename: "style.[hash].css", allChunks: true }), new AssetPipelinePlugin() ], |