mirror of
https://github.com/vercel/commerce.git
synced 2025-05-18 23:46:58 +00:00
17 lines
292 B
JavaScript
17 lines
292 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',
|
|
},
|
|
]
|
|
},
|
|
}
|