OmniContent / web /next.config.ts
Ravindra's picture
dev-v2-pr (#3)
0d0807c
raw
history blame contribute delete
256 Bytes
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: "/backend/:path*",
destination: "http://127.0.0.1:8000/:path*",
},
];
},
};
export default nextConfig;