fix: update API base URL to use relative path

This commit is contained in:
Noooste
2025-12-08 23:57:17 +01:00
parent 2d52bdd714
commit 0553479055
+1 -1
View File
@@ -17,7 +17,7 @@ import type {
} from '@/types';
const api = axios.create({
baseURL: import.meta.env.VITE_API_URL || 'http://localhost:8080/api',
baseURL: '/api',
headers: {
'Content-Type': 'application/json',
},