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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-14 09:45:24 +0300
committerChristoph Wurst <christoph@winzerhof-wurst.at>2019-05-14 09:45:24 +0300
commit24ccca2cd46d5dd05259b1766f91566fbdbe3453 (patch)
treea156ef3480df694a535d939d15cd2cda16239a1f /webpack.common.js
parent1f1be2ac5cad91c3fc290983231a92e3851b36d7 (diff)
Fix caching of webpack chunks
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'webpack.common.js')
-rw-r--r--webpack.common.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/webpack.common.js b/webpack.common.js
index 7a4ef5bca..54ca1714d 100644
--- a/webpack.common.js
+++ b/webpack.common.js
@@ -5,6 +5,7 @@ module.exports = {
entry: path.join(__dirname, 'src/main.js'),
output: {
path: path.resolve(__dirname, 'js'),
+ chunkFilename: 'mail.[name].[contenthash].js',
publicPath: '/js/',
filename: 'mail.js'
},