This commit is contained in:
parent
16ef624551
commit
d228db5f78
|
|
@ -1,10 +1,14 @@
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
output: 'standalone',
|
output: 'standalone',
|
||||||
async rewrites() {
|
async rewrites() {
|
||||||
|
// Use BACKEND_URL env var, or fallback to public Railway URL
|
||||||
|
// In Railway, services cannot use simple hostnames to communicate
|
||||||
|
const backendUrl = process.env.BACKEND_URL || "https://tradingagents-backend.up.railway.app";
|
||||||
|
|
||||||
return [
|
return [
|
||||||
{
|
{
|
||||||
source: "/api/:path*",
|
source: "/api/:path*",
|
||||||
destination: `${process.env.API_URL || "http://backend:8000"}/api/:path*`,
|
destination: `${backendUrl}/api/:path*`,
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue