mirror of
https://github.com/vercel/commerce.git
synced 2025-05-17 15:06:59 +00:00
20 lines
413 B
JavaScript
20 lines
413 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
|
|
},
|
|
experimental: {
|
|
appDir: true
|
|
},
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'vercel.saleor.cloud'
|
|
}
|
|
]
|
|
}
|
|
};
|