/** @type {import('next').NextConfig} */ const nextConfig = { output: 'standalone', images: { remotePatterns: [ { protocol: 'https', hostname: 'api.scryfall.com' }, { protocol: 'https', hostname: 'images.pokemontcg.io' }, { protocol: 'https', hostname: 'lorcana-api.com' }, { protocol: 'https', hostname: 'cdn.stillwell.cloud' }, ], }, }; export default nextConfig;