account settings and account creation

This commit is contained in:
2025-12-27 20:01:17 -05:00
parent aa2dfb0407
commit 2202abe89f
21 changed files with 1848 additions and 718 deletions
+12 -3
View File
@@ -1,8 +1,17 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true
}
appDir: true,
},
async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://localhost:8080/api/:path*",
},
];
},
};
export default nextConfig;
export default nextConfig;