/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', // Enable standalone output for optimized Docker builds // Configure images if using them from external domains images: { // domains: ['example.com'], // Add your image domains here if needed }, // Add any other configurations needed reactStrictMode: true, }; module.exports = nextConfig;