-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
92 lines (92 loc) · 2.62 KB
/
vercel.json
File metadata and controls
92 lines (92 loc) · 2.62 KB
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
{
"rewrites": [
{
"source": "/api/edb",
"destination": "/api/edb-proxy"
},
{
"source": "/api/edb/:path*",
"destination": "/api/edb-proxy?path=:path*"
},
{
"source": "/api/sourcify/repository/:path*",
"destination": "https://repo.sourcify.dev/:path*"
},
{
"source": "/api/sourcify/server/:path*",
"destination": "https://sourcify.dev/server/:path*"
},
{
"source": "/api/sourcify/:path*",
"destination": "https://sourcify.dev/:path*"
},
{
"source": "/api/eth-blockscout/:path*",
"destination": "https://eth.blockscout.com/:path*"
},
{
"source": "/api/blockscout/:path*",
"destination": "https://base.blockscout.com/:path*"
},
{
"source": "/api/polygon-blockscout/:path*",
"destination": "https://polygon.blockscout.com/:path*"
},
{
"source": "/api/arbitrum-blockscout/:path*",
"destination": "https://arbitrum.blockscout.com/:path*"
},
{
"source": "/api/base-sepolia-blockscout/:path*",
"destination": "https://base-sepolia.blockscout.com/:path*"
},
{
"source": "/api/lisk-sepolia-blockscout/:path*",
"destination": "https://sepolia-blockscout.lisk.com/:path*"
},
{
"source": "/api/lisk-blockscout/:path*",
"destination": "https://blockscout.lisk.com/:path*"
},
{
"source": "/api/optimism-blockscout/:path*",
"destination": "https://optimism.blockscout.com/:path*"
},
{
"source": "/api/sepolia-blockscout/:path*",
"destination": "https://eth-sepolia.blockscout.com/:path*"
},
{
"source": "/api/gnosis-blockscout/:path*",
"destination": "https://gnosis.blockscout.com/:path*"
},
{
"source": "/api/repo/:path*",
"destination": "https://repo.sourcify.dev/:path*"
},
{
"source": "/api/lifi-earn/:path*",
"destination": "/api/lifi-earn?path=:path*"
},
{
"source": "/api/lifi-composer/:path*",
"destination": "/api/lifi-composer?path=:path*"
},
{
"source": "/:path((?!api/|assets/|.*\\..*).*)",
"destination": "/index.html"
}
],
"headers": [
{
"source": "/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "X-Frame-Options", "value": "DENY" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Strict-Transport-Security", "value": "max-age=63072000; includeSubDomains" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=()" }
]
}
]
}