summaryrefslogtreecommitdiff
path: root/webpack.config.ts
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2020-04-22 00:34:56 +0900
committersyuilo <syuilotan@yahoo.co.jp>2020-04-22 00:34:56 +0900
commit1f998168e2f6ff94d0119fe5f95ad03b47d19d60 (patch)
treec739bf4de27f8f589061c2ea20ed5a4c432f9280 /webpack.config.ts
parentchore: Update deps (diff)
downloadsharkey-1f998168e2f6ff94d0119fe5f95ad03b47d19d60.tar.gz
sharkey-1f998168e2f6ff94d0119fe5f95ad03b47d19d60.tar.bz2
sharkey-1f998168e2f6ff94d0119fe5f95ad03b47d19d60.zip
feat(client): Implement default upload folder setting
Resolve #5985
Diffstat (limited to 'webpack.config.ts')
-rw-r--r--webpack.config.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/webpack.config.ts b/webpack.config.ts
index ece4854e6a..c6dc0dbabe 100644
--- a/webpack.config.ts
+++ b/webpack.config.ts
@@ -135,7 +135,7 @@ module.exports = {
output: {
path: __dirname + '/built/client/assets',
filename: `[name].${meta.version}.js`,
- chunkFilename: '[hash:5].[id].js',
+ chunkFilename: '[fullhash].[id].js',
publicPath: `/assets/`
},
resolve: {
@@ -155,7 +155,7 @@ module.exports = {
optimization: {
minimizer: [new TerserPlugin()]
},
- cache: true,
+ cache: false,
devtool: false, //'source-map',
mode: isProduction ? 'production' : 'development'
};