TradingAgents/frontend/next.config.ts

23 lines
627 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
reactCompiler: true,
async rewrites() {
// In development: use localhost backend
// In production (Railway): use BACKEND_URL env var or fallback to Railway URL
const isDev = process.env.NODE_ENV === 'development';
const backendUrl = process.env.BACKEND_URL ||
(isDev ? "http://localhost:8000" : "https://tradinaagents-backend.up.railway.app");
return [
{
source: "/api/:path*",
destination: `${backendUrl}/api/:path*`,
},
];
},
};
export default nextConfig;