Skip to content

Commit

Permalink
Add redirects (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
camillobruni authored May 28, 2020
1 parent 67a8642 commit 8822558
Showing 1 changed file with 34 additions and 9 deletions.
43 changes: 34 additions & 9 deletions firebase.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,13 @@
"type": 301
},
{
"source": "/git",
"destination": "https://chromium.googlesource.com/v8/v8.git",
"source": "/api/(?P<version>v[0-9]+.+)/:api*",
"destination": "https://v8.github.io/api/:version/:api",
"type": 301
},
{
"source": "/bug",
"destination": "https://bugs.chromium.org/p/v8/issues/entry",
"type": 301
},
{
"source": "/bugs",
"destination": "https://bugs.chromium.org/p/v8/issues/list",
"source": "/api/:api*",
"destination": "https://v8.github.io/api/head/:api",
"type": 301
},
{
Expand All @@ -33,6 +28,21 @@
"destination": "https://v8.dev/blog/v8-release-52",
"type": 301
},
{
"source": "/bug",
"destination": "https://bugs.chromium.org/p/v8/issues/entry",
"type": 301
},
{
"source": "/bug/(?P<id>v[0-9]+)",
"destination": "https://bugs.chromium.org/p/v8/issues/detail?id=:id",
"type": 301
},
{
"source": "/bugs",
"destination": "https://bugs.chromium.org/p/v8/issues/list",
"type": 301
},
{
"source": "/docs/node-next-generation",
"destination": "https://v8.dev/docs/node-integration",
Expand All @@ -42,6 +52,21 @@
"source": "/features/weakrefs",
"destination": "https://v8.dev/features/weak-references",
"type": 301
},
{
"source": "/git",
"destination": "https://chromium.googlesource.com/v8/v8.git",
"type": 301
},
{
"source": "/tools/(?P<version>v[0-9]+.+)/tool*",
"destination": "https://v8.github.io/tools/:version/:tool",
"type": 301
},
{
"source": "/tools/:tool*",
"destination": "https://v8.github.io/tools/head/:tool",
"type": 301
}
],
"headers": [
Expand Down

0 comments on commit 8822558

Please sign in to comment.