mirror of
https://github.com/vercel/commerce.git
synced 2025-05-22 09:26:59 +00:00
15 lines
341 B
JavaScript
15 lines
341 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: {
|
|
remotePatterns: [
|
|
{
|
|
hostname: process.env.BIGCOMMERCE_CDN_HOSTNAME ?? '*.bigcommerce.com'
|
|
}
|
|
]
|
|
}
|
|
};
|