mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 14:42:31 +00:00
18 lines
402 B
JavaScript
18 lines
402 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
eslint: {
|
|
// Disabling on production builds because we're running checks on PRs via GitHub Actions.
|
|
ignoreDuringBuilds: true
|
|
},
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'cdn.shopify.com',
|
|
pathname: '/s/files/**'
|
|
}
|
|
]
|
|
}
|
|
};
|