/** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', images: { remotePatterns: [ { protocol: 'https', hostname: '**.amazonaws.com', }, ], unoptimized: true, }, }; export default nextConfig;