From c9c8439ac21646fc9a7c11aa2c6455fd39384a1e Mon Sep 17 00:00:00 2001 From: Thomas Dedek Date: Tue, 13 Apr 2021 16:07:09 +0200 Subject: [PATCH] update public path --- public/index.html | 2 +- vue.config.js | 7 +++++-- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/public/index.html b/public/index.html index 0d707e1..547ce3b 100644 --- a/public/index.html +++ b/public/index.html @@ -2,7 +2,7 @@ - ECG Account Service + ECG account password reset
diff --git a/vue.config.js b/vue.config.js index f377529..e360a30 100644 --- a/vue.config.js +++ b/vue.config.js @@ -1,3 +1,6 @@ module.exports = { - runtimeCompiler: true -} + runtimeCompiler: true, + publicPath: process.env.NODE_ENV === 'production' + ? '/manage/' + : '/' +};