aboutsummaryrefslogtreecommitdiff
path: root/viewer/vue.config.js
diff options
context:
space:
mode:
authorZero~Informatique2020-02-08 09:14:03 +0100
committerZero~Informatique2020-02-08 09:14:03 +0100
commit8b8ff179021a204930253a310cc2e9213e342fd1 (patch)
treebf572d43ec46c77b9e233ec72fecb68f32fad274 /viewer/vue.config.js
parent41741f1882c019edac15b1a05f51b72e5af069f7 (diff)
downloadldgallery-8b8ff179021a204930253a310cc2e9213e342fd1.tar.gz
viewer: fixed an issue with prefetching du to webpack chunking
Diffstat (limited to 'viewer/vue.config.js')
-rw-r--r--viewer/vue.config.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/viewer/vue.config.js b/viewer/vue.config.js
index 1ef0f9b..9d885bd 100644
--- a/viewer/vue.config.js
+++ b/viewer/vue.config.js
@@ -27,6 +27,9 @@ module.exports = {
27 enableInSFC: false, 27 enableInSFC: false,
28 }, 28 },
29 }, 29 },
30 chainWebpack: (config) => {
31 config.plugins.delete('prefetch');
32 },
30 configureWebpack: { 33 configureWebpack: {
31 devtool: 'source-map' 34 devtool: 'source-map'
32 }, 35 },