Files
LetterFeed/frontend/next.config.ts
2025-07-15 22:54:35 +02:00

15 lines
250 B
TypeScript

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