playgo_next / next.config.ts
ChenyuRabbitLove's picture
feat: add more examples for landing page chatbot
09ee276
raw
history blame
296 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://localhost:8000/api/:path*' // FastAPI backend
}
]
},
};
export default nextConfig;