mirror of
https://github.com/vercel/commerce.git
synced 2025-06-28 01:11:24 +00:00
14 lines
231 B
TypeScript
14 lines
231 B
TypeScript
export default {
|
|
reactStrictMode: true,
|
|
experimental: { appDir: true },
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'http',
|
|
hostname: '**'
|
|
}
|
|
]
|
|
}
|
|
};
|