nest-trpc-prisma-starter/apps/web/next.config.mjs

14 lines
229 B
JavaScript
Raw Permalink Normal View History

2024-04-25 18:12:44 +00:00
/** @type {import('next').NextConfig} */
const nextConfig = {
async rewrites() {
return [
{
source: '/api',
destination: 'http://localhost:5001/api',
},
]
},
};
export default nextConfig;