mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 22:42:33 +00:00
14 lines
262 B
JavaScript
14 lines
262 B
JavaScript
|
/** @type {import('next').NextConfig} */
|
||
|
module.exports = {
|
||
|
images: {
|
||
|
formats: ['image/avif', 'image/webp'],
|
||
|
remotePatterns: [
|
||
|
{
|
||
|
protocol: 'https',
|
||
|
hostname: 'cdn.shopify.com',
|
||
|
pathname: '/s/files/**'
|
||
|
}
|
||
|
]
|
||
|
}
|
||
|
};
|