Skip to content

Commit

Permalink
Redirect fixes (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
jribbink authored Sep 21, 2023
1 parent 6961f33 commit 3951ed5
Showing 1 changed file with 30 additions and 5 deletions.
35 changes: 30 additions & 5 deletions vercel.json
Original file line number Diff line number Diff line change
Expand Up @@ -928,15 +928,18 @@
},
{
"source": "/tools/toolchains/:path*",
"destination": "/tools/:path*"
"destination": "/tools/:path*",
"permanent": true
},
{
"source": "/tools/fcl-dev-wallet/:path*",
"destination": "/tools/flow-dev-wallet/:path*"
"destination": "/tools/flow-dev-wallet/:path*",
"permanent": true
},
{
"source": "/tools/nft-catalog/(.+)",
"destination": "/tools/nft-catalog"
"destination": "/tools/nft-catalog",
"permanent": true
},
{
"source": "/tools/intro",
Expand Down Expand Up @@ -965,11 +968,13 @@
},
{
"source": "/build/mobile/monster-maker",
"destination": "/build/mobile/ios-quickstart"
"destination": "/build/mobile/ios-quickstart",
"permanent": true
},
{
"source": "/build/mobile",
"destination": "/build/mobile/overview"
"destination": "/build/mobile/overview",
"permanent": true
},
{
"source": "/building-on-flow/mobile",
Expand Down Expand Up @@ -1065,6 +1070,26 @@
"source": "/references/run-and-secure/nodes/node-operation/:path*",
"destination": "/references/run-and-secure/node-operation/:path*",
"permanent": true
},
{
"source": "/concepts/start-here/storage",
"destination": "/build/key-concepts/fees#storage",
"permanent": true
},
{
"source": "/concepts/flow-token",
"destination": "/build/key-concepts/flow-token",
"permanent": true
},
{
"source": "/concepts/start-here/variable-transaction-fees",
"destination": "/build/key-concepts/fees",
"permanent": true
},
{
"source": "/concepts/start-here/accounts-and-keys",
"destination": "/build/key-concepts/accounts",
"permanent": true
}
]
}

1 comment on commit 3951ed5

@vercel
Copy link

@vercel vercel bot commented on 3951ed5 Sep 21, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.