initial commit. phase 1 complete

This commit is contained in:
2026-05-05 20:46:21 +02:00
parent 89e058ffac
commit 3468f38532
69 changed files with 13673 additions and 11 deletions
+15
View File
@@ -0,0 +1,15 @@
/** @type {import('next').NextConfig} */
const DJANGO_URL = process.env.NEXT_PUBLIC_API_URL ?? "http://localhost:8000";
const nextConfig = {
async rewrites() {
return [
{
source: "/backend/:path*",
destination: `${DJANGO_URL}/:path*`,
},
];
},
};
export default nextConfig;