Merge pull request #12614 from hashicorp/ac.home-redirect

fix: redirects website `/home` to `/`
This commit is contained in:
Alex Carpenter 2021-12-22 09:42:43 -05:00 committed by GitHub
commit 63930c0afb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -5,6 +5,7 @@
// Next.js redirect documentation: https://nextjs.org/docs/api-reference/next.config.js/redirects
module.exports = [
{ source: '/home', destination: '/', permanent: true },
{ source: '/support', destination: '/', permanent: true },
{ source: '/sponsors', destination: '/', permanent: true },
{ source: '/about', destination: '/intro', permanent: true },