2021-02-25 16:39:01 -05:00
|
|
|
const commerce = require('./commerce.config.json')
|
2021-02-24 21:55:45 -05:00
|
|
|
const withCommerceConfig = require('./framework/commerce/with-config')
|
|
|
|
|
|
|
|
const isBC = commerce.provider === 'bigcommerce'
|
2021-02-25 09:55:02 +02:00
|
|
|
const isShopify = commerce.provider === 'shopify'
|
2021-04-19 20:37:33 -05:00
|
|
|
const isSwell = commerce.provider === 'swell'
|
2021-02-24 21:55:45 -05:00
|
|
|
|
|
|
|
module.exports = withCommerceConfig({
|
|
|
|
commerce,
|
|
|
|
i18n: {
|
|
|
|
locales: ['en-US', 'es'],
|
|
|
|
defaultLocale: 'en-US',
|
|
|
|
},
|
|
|
|
rewrites() {
|
|
|
|
return [
|
2021-04-19 20:37:33 -05:00
|
|
|
(isBC || isShopify || isSwell) && {
|
2021-02-24 21:55:45 -05:00
|
|
|
source: '/checkout',
|
|
|
|
destination: '/api/bigcommerce/checkout',
|
|
|
|
},
|
|
|
|
// The logout is also an action so this route is not required, but it's also another way
|
|
|
|
// you can allow a logout!
|
|
|
|
isBC && {
|
|
|
|
source: '/logout',
|
|
|
|
destination: '/api/bigcommerce/customers/logout?redirect_to=/',
|
|
|
|
},
|
|
|
|
// Rewrites for /search
|
|
|
|
{
|
|
|
|
source: '/search/designers/:name',
|
|
|
|
destination: '/search',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
source: '/search/designers/:name/:category',
|
|
|
|
destination: '/search',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
// This rewrite will also handle `/search/designers`
|
|
|
|
source: '/search/:category',
|
|
|
|
destination: '/search',
|
|
|
|
},
|
|
|
|
].filter((x) => x)
|
|
|
|
},
|
|
|
|
})
|