summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2022-02-11 22:36:09 +0100
committerivarlovlie <git@ivarlovlie.no>2022-02-11 22:36:09 +0100
commita4cd5100f23235d6124d28b1a3b2913e3659494e (patch)
tree4783492f8027185a2a82c1237553356572fcf91e
parent573ae838bc516c2a86a539773e7e351940a2b68c (diff)
downloadbookmark-thing-a4cd5100f23235d6124d28b1a3b2913e3659494e.tar.xz
bookmark-thing-a4cd5100f23235d6124d28b1a3b2913e3659494e.zip
feat: Use prod api urls on client
-rw-r--r--src/webapp/src/lib/configuration.ts6
1 files changed, 4 insertions, 2 deletions
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}`;