diff options
| author | syuilo <syuilotan@yahoo.co.jp> | 2020-04-22 00:34:56 +0900 |
|---|---|---|
| committer | syuilo <syuilotan@yahoo.co.jp> | 2020-04-22 00:34:56 +0900 |
| commit | 1f998168e2f6ff94d0119fe5f95ad03b47d19d60 (patch) | |
| tree | c739bf4de27f8f589061c2ea20ed5a4c432f9280 /webpack.config.ts | |
| parent | chore: Update deps (diff) | |
| download | sharkey-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.ts | 4 |
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' }; |