forked from crowetic/commerce
23 lines
404 B
JavaScript
23 lines
404 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
module.exports = {
|
|
images: {
|
|
formats: ['image/avif', 'image/webp'],
|
|
remotePatterns: [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'cdn.shopify.com',
|
|
pathname: '/s/files/**'
|
|
}
|
|
]
|
|
},
|
|
async redirects() {
|
|
return [
|
|
{
|
|
source: '/password',
|
|
destination: '/',
|
|
permanent: true
|
|
}
|
|
];
|
|
}
|
|
};
|