tsk-11: Make URLs more dynamic #15

Merged
phoenix merged 12 commits from tsk-11 into main 2026-07-04 16:25:45 -04:00
Showing only changes of commit fbc7003c1c - Show all commits
+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;