Files
trackevery-day/next.config.mjs
Felix Schulze ba3ef8bc2b
All checks were successful
Lint / Lint and Check (push) Successful in 36s
Add Docker support for optimized Next.js deployment
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.
2025-12-09 13:18:19 +01:00

7 lines
117 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'standalone',
};
export default nextConfig;