import { NextConfig } from 'next'; const nextConfig: NextConfig = { experimental: { ppr: true, dynamicIO: true, inlineCss: true, useCache: true, prerenderEarlyExit: false }, images: { formats: ['image/avif', 'image/webp'], remotePatterns: [ { protocol: 'https', hostname: 'cdn.shopify.com', pathname: '/s/files/**' } ] } }; export default nextConfig;