fix: redirect /home to / (#1788)

pull/1810/head
Alex Carpenter 4 years ago committed by GitHub
parent 3afbfbf8c2
commit c69e96969e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,11 @@ module.exports = [
// vercel's redirect documentation: https://vercel.com/docs/configuration#project/redirects
// Top level redirect
{
source: '/home',
destination: '/',
permanent: true,
},
{
source: '/help/admin-ui',
destination: '/docs',

Loading…
Cancel
Save