import { NextConfig } from 'next'; const nextConfig: NextConfig = { images: { remotePatterns: [ { protocol: 'https', hostname: 'images.pokemontcg.io' }, { protocol: 'https', hostname: 'api.pokemontcg.io' }, ], }, output: 'standalone', experimental: { turbo: { rules: {}, }, }, }; export default nextConfig;