aboutsummaryrefslogtreecommitdiff
path: root/viewer/vue.config.js
diff options
context:
space:
mode:
authorZero~Informatique2020-01-29 23:11:55 +0100
committerZero~Informatique2020-01-30 17:24:08 +0100
commit8670fb146e90f98653c776b01f29d905e5a6fe9f (patch)
tree2f75af9e06a8e7e6ee8815cc610c196240d2db11 /viewer/vue.config.js
parent118666b4c3faeaeaf153a2ea7172764a3cbcffab (diff)
downloadldgallery-8670fb146e90f98653c776b01f29d905e5a6fe9f.tar.gz
viewer: fixed subdirectory deploiement; all paths are now relative to index.html. resolves #17
Diffstat (limited to 'viewer/vue.config.js')
-rw-r--r--viewer/vue.config.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/vue.config.js b/viewer/vue.config.js
index 55cd2e7..67b7461 100644
--- a/viewer/vue.config.js
+++ b/viewer/vue.config.js
@@ -18,6 +18,7 @@
18*/ 18*/
19 19
20module.exports = { 20module.exports = {
21 publicPath: "./",
21 pluginOptions: { 22 pluginOptions: {
22 i18n: { 23 i18n: {
23 locale: "en", 24 locale: "en",
@@ -31,7 +32,7 @@ module.exports = {
31 port: 8085, 32 port: 8085,
32 serveIndex: true, 33 serveIndex: true,
33 before: (app, server, compiler) => { 34 before: (app, server, compiler) => {
34 app.get(`${process.env.VUE_APP_DATA_URL}*`, (req, res) => { 35 app.get(`/${process.env.VUE_APP_DATA_URL}*`, (req, res) => {
35 const fs = require("fs"); 36 const fs = require("fs");
36 const url = req.url.slice(process.env.VUE_APP_DATA_URL.length); 37 const url = req.url.slice(process.env.VUE_APP_DATA_URL.length);
37 const paramIdx = url.indexOf('?'); 38 const paramIdx = url.indexOf('?');