1
0
mirror of https://github.com/vercel/commerce.git synced 2025-06-01 22:16:58 +00:00
commerce/next.config.js
2024-09-23 19:11:06 -04:00

14 lines
246 B
JavaScript

/** @type {import('next').NextConfig} */
module.exports = {
images: {
formats: ['image/avif', 'image/webp'],
remotePatterns: [
{
protocol: 'https',
hostname: '**',
pathname: '**'
}
]
}
};