mirror of
https://github.com/vercel/commerce.git
synced 2025-06-17 04:31:22 +00:00
17 lines
291 B
JavaScript
17 lines
291 B
JavaScript
const commerce = require('./commerce.config.json');
|
|
|
|
module.exports = {
|
|
commerce,
|
|
images: {
|
|
domains: [process.env.NEXT_PUBLIC_SPREE_ALLOWED_IMAGE_DOMAIN]
|
|
},
|
|
rewrites() {
|
|
return [
|
|
{
|
|
source: '/checkout',
|
|
destination: '/api/checkout'
|
|
}
|
|
];
|
|
}
|
|
};
|