import type { NextConfig } from "next"; const nextConfig: NextConfig = { output: 'standalone', images: { domains: [ 'm.media-amazon.com', 'i.scdn.co', 'www.moma.org' ], remotePatterns: [ { protocol: 'https', hostname: '**', }, ], }, // Enable strict mode for better development experience reactStrictMode: true, }; export default nextConfig;