partner-next/next.config.ts
2025-06-02 13:04:22 +03:00

15 lines
252 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://127.0.0.1:8000/:path*",
},
];
},
};
export default nextConfig;