diff --git a/next.config.js b/next.config.js index 515b2ae7c..6627e2e57 100644 --- a/next.config.js +++ b/next.config.js @@ -38,6 +38,15 @@ module.exports = withCommerceConfig({ }, ].filter(Boolean) }, + async redirects () { + return [ + { + source: '/', + destination: '/search', + permanent: true, + } + ] + } }) // Don't delete this console log, useful to see the commerce config in Vercel deployments