Files
shadow-gunbuilder-ai-proto/next.config.mjs
T
dstrawsb d9498f8aca
CI / test (push) Successful in 6s
upgrading nextjs to 15
2026-01-24 23:32:58 -05:00

25 lines
486 B
JavaScript

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