Files
2026-01-23 21:40:16 -05:00

23 lines
393 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
experimental: {
appDir: true,
},
typescript: {
ignoreBuildErrors: true,
},
eslint: {
ignoreDuringBuilds: true,
},
/* async rewrites() {
return [
{
source: "/api/:path*",
destination: "http://battlbuilder-api:8080/api/:path*",
},
];
},*/
};
export default nextConfig;