diff --git a/next.config.js b/next.config.js index 7a65540b1..53a8515e2 100644 --- a/next.config.js +++ b/next.config.js @@ -16,5 +16,14 @@ module.exports = { pathname: '/s/files/**' } ] + }, + async redirects() { + return [ + { + source: '/password', + destination: '/', + permanent: true + } + ]; } };