commerce/next.config.ts
2025-03-28 14:16:00 -04:00

26 lines
481 B
TypeScript

export default {
experimental: {
ppr: true,
inlineCss: true,
useCache: true,
},
images: {
formats: ['image/avif', 'image/webp'],
unoptimized: true,
remotePatterns: [
{
protocol: 'https',
hostname: 'cdn.shopify.com',
pathname: '/s/files/**',
},
{
protocol: 'https',
hostname: 'linconson-a.netlify.app',
port: '80',
pathname: '**',
},
],
},
devIndicators: false,
}