All checks were successful
Lint / Lint and Check (push) Successful in 36s
Introduces Docker configuration files to enable containerized builds and streamlined deployment using a multi-stage strategy with standalone Next.js output. Updates configuration to optimize image size and leverage production best practices.
7 lines
117 B
JavaScript
7 lines
117 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
output: 'standalone',
|
|
};
|
|
|
|
export default nextConfig;
|