aboutsummaryrefslogtreecommitdiff
path: root/juick-www
diff options
context:
space:
mode:
authorGravatar Vitaly Takmazov2017-08-29 12:44:43 +0300
committerGravatar Vitaly Takmazov2017-08-29 12:44:43 +0300
commit863bc8259b38699c013e78a32aa030fb1563ffa2 (patch)
treeb00cb92a3c6174540eebf95739246b3c9b8643a4 /juick-www
parent6840b088c90273f490a397a3c7ff2d67a58549a0 (diff)
webpack: using hash in css too
Diffstat (limited to 'juick-www')
-rw-r--r--juick-www/webpack.config.js2
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()
],