import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Enable standalone output for optimized Docker images // Produces .next/standalone with a minimal server.js output: "standalone", images: { remotePatterns: [ { protocol: "https", hostname: "**", }, ], }, }; export default nextConfig;