Files
leistungsbilanz-ts/next.config.mjs
T
2026-04-30 21:37:21 +02:00

21 lines
404 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
typescript: {
tsconfigPath: "./tsconfig.next.json",
},
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:3000/api/:path*",
},
{
source: "/health",
destination: "http://localhost:3000/health",
},
];
},
};
export default nextConfig;