Skip to content

Commit

Permalink
Adds redirect for /password (vercel#1162)
Browse files Browse the repository at this point in the history
  • Loading branch information
manovotny authored Aug 8, 2023
1 parent 74b5a25 commit 5f2348d
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,14 @@ module.exports = {
pathname: '/s/files/**'
}
]
},
async redirects() {
return [
{
source: '/password',
destination: '/',
permanent: true
}
];
}
};

0 comments on commit 5f2348d

Please sign in to comment.