25 lines
486 B
JavaScript
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; |