mirror of
https://github.com/vercel/commerce.git
synced 2025-06-01 22:16:58 +00:00
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: '**',
|
|
pathname: '**'
|
|
}
|
|
]
|
|
}
|
|
};
|