tsk-11: Make URLs more dynamic (#15)

Closes #11

Reviewed-on: phoenix/textsender#15
This commit was merged in pull request #15.
This commit is contained in:
2026-07-04 16:25:45 -04:00
parent 53b80e3d2c
commit 7a357f6108
6 changed files with 24 additions and 2 deletions
+2 -2
View File
@@ -1,2 +1,2 @@
export const AUTH_API_BASE_URL = 'http://localhost:9080';
export const API_BASE_URL = 'http://localhost:9081';
export const AUTH_API_BASE_URL = import.meta.env.VITE_AUTH_URL;
export const API_BASE_URL = import.meta.env.VITE_API_URL;