import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Enable standalone output for Docker output: 'standalone', // Optimize for production reactStrictMode: true, // Image optimization (enabled for better performance) images: { formats: ['image/avif', 'image/webp'], }, // Hide the "compiling" indicator devIndicators: false, turbopack: {}, }; export default nextConfig;