commerce/next.config.ts
Lee Robinson 7f8f9ff1a3 use cache
2025-02-09 11:38:22 -06:00

20 lines
349 B
TypeScript

export default {
experimental: {
ppr: true,
inlineCss: true,
useCache: true,
reactOwnerStack: true,
newDevOverlay: true
},
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.shopify.com',
pathname: '/s/files/**'
}
]
}
};