commerce/next.config.ts
2025-05-20 14:34:07 +02:00

19 lines
371 B
TypeScript

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