Compare commits

..

2 Commits

Author SHA1 Message Date
Noooste 3d88d1628a fix: remove unnecessary .env.production copy from Dockerfile 2025-12-08 23:57:35 +01:00
Noooste 0553479055 fix: update API base URL to use relative path 2025-12-08 23:57:17 +01:00
2 changed files with 1 additions and 3 deletions
-2
View File
@@ -8,8 +8,6 @@ RUN npm ci
COPY frontend/ .
COPY frontend/.env.production .env
RUN npm run build
FROM golang:1.25.4-alpine3.22 AS backend-builder
+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',
},