commerce/next.config.ts
2025-05-15 12:34:52 +02:00

24 lines
429 B
TypeScript

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;