TIF_E41253329/fe-nlp/next.config.ts

15 lines
264 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
async rewrites() {
return [
{
source: '/api/backend/:path*',
destination: 'https://be-nlp.vercel.app/:path*',
},
];
},
};
export default nextConfig;