mirror of
https://github.com/vercel/commerce.git
synced 2025-05-02 15:57:52 +00:00
26 lines
481 B
TypeScript
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,
|
|
}
|