First frontend

This commit is contained in:
2026-04-30 21:37:21 +02:00
parent c3e98af5b6
commit ac48e03404
16 changed files with 1764 additions and 5 deletions
+20
View File
@@ -0,0 +1,20 @@
/** @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;