upgrading nextjs to 15
CI / test (push) Successful in 6s

This commit is contained in:
2026-01-24 23:32:58 -05:00
parent 5b73d59c2c
commit d9498f8aca
24 changed files with 1927 additions and 1169 deletions
+10 -8
View File
@@ -3,6 +3,7 @@ const nextConfig = {
experimental: {
appDir: true,
},
output: "standalone",
typescript: {
ignoreBuildErrors: true,
},
@@ -10,14 +11,15 @@ const nextConfig = {
ignoreDuringBuilds: true,
},
/* async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://battlbuilder-api:8080/api/:path*",
},
];
},*/
// If you want rewrites, uncomment this block:
// async rewrites() {
// return [
// {
// source: "/api/:path*",
// destination: "http://battlbuilder-api:8080/api/:path*",
// },
// ];
// },
};
export default nextConfig;