nest-trpc-prisma-starter/apps/web/next.config.mjs
2024-04-26 02:12:44 +08:00

14 lines
229 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/api',
destination: 'http://localhost:5001/api',
},
]
},
};
export default nextConfig;