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.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('?');