commerce/next.config.ts
2025-02-28 09:28:45 +03:00

18 lines
437 B
TypeScript

export default {
experimental: {
ppr: true, // Partial Prerendering
inlineCss: true, // Inline CSS for faster page loads
useCache: true, // Experimental caching
newDevOverlay: true, // New development overlay
},
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.shopify.com',
pathname: '/s/files/**',
},
],
},
};