From a4cd5100f23235d6124d28b1a3b2913e3659494e Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Fri, 11 Feb 2022 22:36:09 +0100 Subject: feat: Use prod api urls on client --- src/webapp/src/lib/configuration.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'src/webapp') diff --git a/src/webapp/src/lib/configuration.ts b/src/webapp/src/lib/configuration.ts index 2b9c2af..a480141 100644 --- a/src/webapp/src/lib/configuration.ts +++ b/src/webapp/src/lib/configuration.ts @@ -1,6 +1,8 @@ export const api_version = "v1"; -export const api_docs = "http://localhost:5003/swagger/index.html"; -export const api_url = "http://localhost:5003"; +// export const api_docs = "http://localhost:5003/swagger/index.html"; +// export const api_url = "http://localhost:5003"; +export const api_docs = "https://bmt-api.ivarlovlie.no/swagger/index.html"; +export const api_url = "https://bmt-api.ivarlovlie.no"; export function api_base(path) { return `${api_url}/${api_version}/${path}`; -- cgit v1.3