aboutsummaryrefslogtreecommitdiff
path: root/viewer/vue.config.js
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/vue.config.js')
-rw-r--r--viewer/vue.config.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/viewer/vue.config.js b/viewer/vue.config.js
index f481e4f..9240964 100644
--- a/viewer/vue.config.js
+++ b/viewer/vue.config.js
@@ -27,11 +27,11 @@ module.exports = {
27 enableInSFC: false, 27 enableInSFC: false,
28 }, 28 },
29 }, 29 },
30 chainWebpack: (config) => { 30 chainWebpack: config => {
31 config.plugins.delete("prefetch"); 31 config.plugins.delete("prefetch");
32 }, 32 },
33 configureWebpack: { 33 configureWebpack: {
34 devtool: "source-map" 34 devtool: "source-map",
35 }, 35 },
36 productionSourceMap: false, 36 productionSourceMap: false,
37 devServer: { 37 devServer: {
@@ -47,6 +47,6 @@ module.exports = {
47 const file = fs.readFileSync(fullpath); 47 const file = fs.readFileSync(fullpath);
48 res.end(file); 48 res.end(file);
49 }); 49 });
50 } 50 },
51 } 51 },
52}; 52};