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,7 +1,7 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
env: {
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3001',
NEXT_PUBLIC_API_URL: process.env.NEXT_PUBLIC_API_URL || 'http://localhost:3002',
},
}