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

fix: redirects website `/home` to `/`
This commit is contained in:
Alex Carpenter
2021-12-22 09:43:05 -05:00
committed by GitHub

View File

@@ -2,6 +2,11 @@ module.exports = [
// Define your custom redirects within this file.
// Vercel's redirect documentation: https://vercel.com/docs/configuration#project/redirects
// Playground for testing url pattern matching: https://npm.runkit.com/path-to-regexp
{
source: '/home',
destination: '/',
permanent: true,
},
// Friendly URL for trial form redirection
{