/** @type {import('next').NextConfig} */ const nextConfig = { output: 'export', images: { remotePatterns: [ { protocol: 'https', hostname: '**', }, ], }, experimental: { optimizeCss: true, }, } module.exports = nextConfig