-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvercel.json
23 lines (23 loc) · 888 Bytes
/
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
{
"functions": {
"api/*.php": {
"runtime": "[email protected]"
}
},
"routes": [
{ "src": "/", "dest": "/index.php" },
{ "src": "/api/anime", "dest": "/api/anime.php" },
{ "src": "/api/email", "dest": "/api/email.php" },
{ "src": "/api/ongoing", "dest": "/api/ongoing.php" },
{ "src": "/api/search", "dest": "/api/search.php" },
{ "src": "/api/view", "dest": "/api/view.php" },
{ "src": "/anime(?:/(.*))?", "dest": "/anime/index.php" },
{ "src": "/anime/view(?:/(.*))?", "dest": "/anime/view/index.php" },
{ "src": "/ongoing(?:/(.*))?", "dest": "/ongoing/index.php" },
{ "src": "/search(?:/(.*))?", "dest": "/search/index.php" },
{ "src": "/robots.txt", "dest": "/robots.txt" },
{ "src": "/sitemap.xml", "dest": "/sitemap.xml" },
{ "src": "/favicon.ico", "dest": "/favicon.ico" },
{ "handle": "filesystem" }
]
}