import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: "standalone", // Allow images from any domain (for article lead images) images: { remotePatterns: [ { protocol: "https", hostname: "**", }, ], }, }; export default nextConfig;