diff options
author | Christopher Ng <chrng8@gmail.com> | 2021-07-28 03:59:59 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2021-07-28 22:43:09 +0000 |
commit | 63c3b9a4cc281cf5f69f5c4313f2b9d238c07308 (patch) | |
tree | 04f95ff418f49fc542fdb905f8b8b78cce1d6d1d /apps/settings/webpack.js | |
parent | 9a9df238a6f60fb43cd89e1a604091edb3077686 (diff) | |
download | nextcloud-server-63c3b9a4cc281cf5f69f5c4313f2b9d238c07308.tar.gz nextcloud-server-63c3b9a4cc281cf5f69f5c4313f2b9d238c07308.zip |
Remove chunkhash
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/webpack.js')
-rw-r--r-- | apps/settings/webpack.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings/webpack.js b/apps/settings/webpack.js index 8c6aacc3c94..32dbf8fbd69 100644 --- a/apps/settings/webpack.js +++ b/apps/settings/webpack.js @@ -51,7 +51,7 @@ module.exports = { path: path.resolve(__dirname, './js'), publicPath: '/js/', filename: 'vue-[name].js?v=[contenthash]', - chunkFilename: 'vue-[name]-[chunkhash].js?v=[contenthash]', + chunkFilename: 'vue-[name].js?v=[contenthash]', jsonpFunction: 'webpackJsonpSettings', }, optimization: { |