Files
B.Tech-Project-III/negot8/dashboard/next.config.ts
2026-04-05 00:43:23 +05:30

15 lines
256 B
TypeScript

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