Fix port conflict: Change backend from 3001 to 3002

This commit is contained in:
Timo
2026-01-16 18:59:15 +01:00
parent 6ac7d5a791
commit f56b2fcf8c
5 changed files with 185 additions and 4 deletions

View File

@@ -1,6 +1,6 @@
import axios from 'axios';
const API_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3001';
const API_URL = process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3002';
export const api = axios.create({
baseURL: `${API_URL}/api`,