mirror of
https://github.com/vercel/commerce.git
synced 2025-05-07 02:07:51 +00:00
22 lines
474 B
JavaScript
22 lines
474 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'cdn.shopify.com',
|
|
pathname: '/s/files/**'
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'zylq-002.dx.commercecloud.salesforce.com',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'edge.disstg.commercecloud.salesforce.com',
|
|
}
|
|
]
|
|
}
|
|
};
|