All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m50s
20 lines
399 B
JavaScript
20 lines
399 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
reactStrictMode: false,
|
|
swcMinify: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
async rewrites() {
|
|
return [
|
|
{
|
|
source: "/api/:path*",
|
|
destination: "http://backend:8000/:path*", // internal Docker hostname
|
|
},
|
|
]
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|