diff --git a/apps/store/next.config.js b/apps/store/next.config.js index 22600d387a..883605c4e9 100644 --- a/apps/store/next.config.js +++ b/apps/store/next.config.js @@ -109,6 +109,16 @@ module.exports = withBundleAnalyzer({ permanent: true, locale: false, })), + ...(process.env.NODE_ENV === 'production' + ? [ + { + source: `/se/start`, + destination: `/se`, + permanent: false, + locale: false, + }, + ] + : []), ] }, })