Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/le0pard/pgtune.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexey Vasiliev <leopard.not.a@gmail.com>2018-04-22 11:07:22 +0300
committerAlexey Vasiliev <leopard.not.a@gmail.com>2018-04-27 15:58:25 +0300
commit840a7399c100ac96d9ac72473de16be5e4e1aeb8 (patch)
treec38fd5264515d392ae80f47461b09ff4edd47644 /webpack.config.js
parent0e3e0402edd1133839f82a7caa1739a6e3825e7b (diff)
use mini-css-extract-plugin with contenthash
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js
index d563884..e4d494e 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -141,7 +141,7 @@ const config = {
plugins: [
new MiniCssExtractPlugin({
- filename: isProduction ? '[name]-[hash].css' : '[name].css'
+ filename: isProduction ? '[name]-[contenthash].css' : '[name].css'
})
],