-
Notifications
You must be signed in to change notification settings - Fork 58
/
vercel.json
58 lines (58 loc) · 4.6 KB
/
vercel.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"cleanUrls": true,
"headers": [
{
"source": "/(.*)",
"headers": [
{
"key": "Cross-Origin-Opener-Policy",
"value": "same-origin"
}
]
}
],
"redirects": [
{ "source": "/chainhook/:path*", "destination": "/stacks/chainhook", "permanent": true },
{ "source": "/stacks/chainhook/concepts/bitcoin-predicates", "destination": "/stacks/chainhook/concepts/predicate-design", "permanent": true },
{ "source": "/stacks/chainhook/concepts/stacks-predicates", "destination": "/stacks/chainhook/concepts/predicate-design", "permanent": true },
{ "source": "/clarinet/:path*", "destination": "/stacks/clarinet", "permanent": true },
{ "source": "/stacks/explorer/:path*", "destination": "https://explorer.hiro.so", "permanent": true },
{ "source": "/explorer/:path*", "destination": "https://explorer.hiro.so", "permanent": true },
{ "source": "/hiro-archive/:path*", "destination": "/stacks/archive", "permanent": true },
{ "source": "/platform/:path*", "destination": "/stacks/platform", "permanent": true },
{ "source": "/stacks.js/:path*", "destination": "/stacks/stacks.js", "permanent": true },
{ "source": "/stacks-blockchain-api/:path*", "destination": "/stacks/api", "permanent": true },
{ "source": "/api/:path*", "destination": "/stacks/api", "permanent": true },
{ "source": "/stacks/api/fees/estimate", "destination": "/stacks/rpc-api/fees/estimate", "permanent": true },
{ "source": "/stacks/api/fees/transfer-estimate", "destination": "/stacks/rpc-api/fees/transfer-estimate", "permanent": true },
{ "source": "/stacks/api/info/core-api", "destination": "/stacks/rpc-api/info/core-api", "permanent": true },
{ "source": "/stacks/api/info/pox-details", "destination": "/stacks/rpc-api/pox/pox-details", "permanent": true },
{ "source": "/stacks/api/names/name-price", "destination": "/stacks/rpc-api/names/name-price", "permanent": true },
{ "source": "/stacks/api/names/namespace-price", "destination": "/stacks/rpc-api/names/namespace-price", "permanent": true },
{ "source": "/stacks/api/smart-contracts/interface", "destination": "/stacks/rpc-api/smart-contracts/interface", "permanent": true },
{ "source": "/stacks/api/smart-contracts/map-entry", "destination": "/stacks/rpc-api/smart-contracts/map-entry", "permanent": true },
{ "source": "/stacks/api/smart-contracts/read-only", "destination": "/stacks/rpc-api/smart-contracts/read-only", "permanent": true },
{ "source": "/stacks/api/smart-contracts/source", "destination": "/stacks/rpc-api/smart-contracts/source", "permanent": true },
{ "source": "/stacks/api/transactions/broadcast-transaction", "destination": "/stacks/rpc-api/transactions/broadcast-transaction", "permanent": true },
{ "source": "/metadata/:path*", "destination": "/stacks/token-metadata-api", "permanent": true },
{ "source": "/token-metadata-api/:path*", "destination": "/stacks/token-metadata-api", "permanent": true },
{ "source": "/ordinals/api/:path*", "destination": "/bitcoin/ordinals/api", "permanent": true },
{ "source": "/ordinals/explorer/:path*", "destination": "https://ordinals.hiro.so", "permanent": true },
{ "source": "/ordinals/:path*", "destination": "/bitcoin", "permanent": true },
{ "source": "/api-keys", "destination": "/guides/api-keys", "permanent": true },
{ "source": "/rate-limiting", "destination": "/guides/rate-limiting", "permanent": true },
{ "source": "/changelog", "destination": "/stacks", "permanent": true },
{ "source": "/contributors-guide", "destination": "/guides/contributors-guide", "permanent": true },
{ "source": "/example-apps/:path*", "destination": "/stacks/get-started", "permanent": true },
{ "source": "/build-apps/:path*", "destination": "/stacks", "permanent": true },
{ "source": "/get-started/:path*", "destination": "/stacks/get-started", "permanent": true },
{ "source": "/tutorials/:path*", "destination": "/stacks/get-started", "permanent": true },
{ "source": "/ordhook/:path*", "destination": "/bitcoin/ordinals/ordhook", "permanent": true },
{ "source": "/ordinals-api", "destination": "/bitcoin/ordinals/api", "permanent": true },
{ "source": "/nakamoto/:path*", "destination": "/stacks/nakamoto", "permanent": true },
{ "source": "/nakamoto-api/:path*", "destination": "/stacks/api", "permanent": true },
{ "source": "/hacks/:path*", "destination": "/stacks/hacks", "permanent": true },
{ "source": "/references/:path*", "destination": "/stacks/stacks.js", "permanent": true },
{ "source": "/stacksjs-starters", "destination": "/stacks/stacks.js", "permanent": true }
]
}