diff --git a/api/src/main/nim/personal_measure_apipkg/api.nim b/api/src/main/nim/personal_measure_apipkg/api.nim index a484c7d..c6703c4 100644 --- a/api/src/main/nim/personal_measure_apipkg/api.nim +++ b/api/src/main/nim/personal_measure_apipkg/api.nim @@ -207,7 +207,7 @@ proc start*(ctx: PMApiContext): void = settings: port = Port(ctx.cfg.port) - appName = "/api" + appName = "/v0" routes: diff --git a/web/.env.development b/web/.env.development index 990c916..ec68ba2 100644 --- a/web/.env.development +++ b/web/.env.development @@ -1,4 +1,4 @@ NODE_ENV=production -VUE_APP_PM_API_BASE=https://pmapi-dev.jdb-labs.com/api +VUE_APP_PM_API_BASE=https://pmapi-dev.jdb-labs.com/v0 VUE_APP_LOG_LEVEL=INFO VUE_APP_API_LOG_LEVEL=ERROR diff --git a/web/.env.production b/web/.env.production index 6563647..ab4ceb8 100644 --- a/web/.env.production +++ b/web/.env.production @@ -1,3 +1,3 @@ -VUE_APP_PM_API_BASE=https://pmapi.jdb-labs.com/api +VUE_APP_PM_API_BASE=https://pmapi.jdb-labs.com/v0 VUE_APP_LOG_LEVEL=INFO VUE_APP_API_LOG_LEVEL=ERROR diff --git a/web/vue.config.js b/web/vue.config.js index 11e3fa8..f0d2536 100644 --- a/web/vue.config.js +++ b/web/vue.config.js @@ -8,7 +8,7 @@ const VERSION = { module.exports = { devServer: { proxy: { - '/api': { target: 'http://localhost:8081' } + '/v0': { target: 'http://localhost:8081' } }, host: 'localhost', disableHostCheck: true