-
Notifications
You must be signed in to change notification settings - Fork 342
/
vercel.json
154 lines (154 loc) · 4.91 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"redirects": [
{
"source": "/",
"destination": "https://solana.com/developers/cookbook",
"permanent": true
},
{
"source": "/getting-started/installation.html",
"destination": "https://solana.com/docs/intro/installation",
"permanent": true
},
{
"source": "/core-concepts/accounts.html",
"destination": "https://solana.com/docs/core/accounts",
"permanent": true
},
{
"source": "/core-concepts/programs.html",
"destination": "https://solana.com/docs/core/programs",
"permanent": true
},
{
"source": "/core-concepts/transactions.html",
"destination": "https://solana.com/docs/core/transactions",
"permanent": true
},
{
"source": "/core-concepts/pdas.html",
"destination": "https://solana.com/docs/core/pda",
"permanent": true
},
{
"source": "/core-concepts/cpi.html",
"destination": "https://solana.com/docs/core/cpi",
"permanent": true
},
{
"source": "/guides/get-program-accounts.html#facts",
"destination": "https://solana.com/developers/guides/javascript/get-program-accounts",
"permanent": true
},
{
"source": "guides/debugging-solana-programs.html",
"destination": "https://solana.com/docs/programs/debugging#logging",
"permanent": true
},
{
"source": "/guides/retrying-transactions.html",
"destination": "https://solana.com/docs/advanced/retry",
"permanent": true
},
{
"source": "/guides/versioned-transactions.html",
"destination": "https://solana.com/docs/advanced/versions",
"permanent": true
},
{
"source": "/references/local-development.html",
"destination": "https://solana.com/developers/cookbook/development/start-local-validator",
"permanent": true
},
{
"source": "/references/keypairs-and-wallets.html",
"destination": "https://solana.com/developers/cookbook/wallets/create-keypair",
"permanent": true
},
{
"source": "/references/basic-transactions.html",
"destination": "https://solana.com/developers/cookbook/transactions/send-sol",
"permanent": true
},
{
"source": "/references/accounts.html",
"destination": "https://solana.com/developers/cookbook/accounts/create-account",
"permanent": true
},
{
"source": "/references/programs.html#how-to-transfer-sol-in-a-program",
"destination": "https://solana.com/developers/cookbook/programs/transfer-sol",
"permanent": true
},
{
"source": "/references/tokens.html",
"destination": "https://solana.com/developers/cookbook/tokens/create-mint-account",
"permanent": true
},
{
"source": "/references/nfts.html#how-to-create-an-nft",
"destination": "https://solana.com/developers/cookbook/tokens/",
"permanent": true
},
{
"source": "/references/offline-transactions.html#sign-transaction",
"destination": "https://solana.com/developers/cookbook/transactions/offline-transactions",
"permanent": true
},
{
"source": "/gaming/intro.html",
"destination": "https://solana.com/developers/guides/games/getting-started-with-game-development",
"permanent": true
},
{
"source": "/gaming/intro.html",
"destination": "https://solana.com/developers/guides/games/getting-started-with-game-development",
"permanent": true
},
{
"source": "/gaming/game-sdks.html",
"destination": "https://solana.com/developers/guides/games/game-sdks",
"permanent": true
},
{
"source": "/gaming/nfts-in-games.html",
"destination": "https://solana.com/developers/guides/games/nfts-in-games",
"permanent": true
},
{
"source": "/gaming/hello-world.html",
"destination": "https://solana.com/developers/guides/games/hello-world",
"permanent": true
},
{
"source": "/gaming/store-sol-in-pda.html",
"destination": "https://solana.com/developers/guides/games/store-sol-in-pda",
"permanent": true
},
{
"source": "/gaming/saving-game-state.html",
"destination": "https://solana.com/developers/guides/games/saving-game-state",
"permanent": true
},
{
"source": "/gaming/energy-system.html",
"destination": "https://solana.com/developers/guides/games/energy-system",
"permanent": true
},
{
"source": "/gaming/interact-with-tokens.html",
"destination": "https://solana.com/developers/guides/games/interact-with-tokens",
"permanent": true
},
{
"source": "/gaming/porting-anchor-to-unity.html",
"destination": "https://solana.com/developers/guides/games/porting-anchor-to-unity",
"permanent": true
},
{
"source": "/gaming/game-examples.html",
"destination": "https://solana.com/developers/guides/games/game-examples",
"permanent": true
}
]
}