aboutsummaryrefslogtreecommitdiff
path: root/viewer/vue.config.js
diff options
context:
space:
mode:
authorZero~Informatique2020-06-20 16:50:49 +0200
committerOzoneGrif2020-06-28 14:11:13 +0200
commit170d7a61f720ece9dc4b347b19f5a8213f1d8984 (patch)
tree3a7af0595faea4a98437f8f73b3172529bda3a1d /viewer/vue.config.js
parent06355c9cebce469d3d827d48043387144c2458a5 (diff)
downloadldgallery-170d7a61f720ece9dc4b347b19f5a8213f1d8984.tar.gz
viewer: prettier formatting based on eslint-prettier plugin
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};