fixflow / frontend /next.config.ts
E5K7's picture
chore: configure Docker and proxy for HuggingFace Spaces deployment
38c50f9
raw
history blame contribute delete
256 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: '/api/:path*',
destination: 'http://127.0.0.1:8000/api/:path*',
},
];
},
};
export default nextConfig;