-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
49 lines (49 loc) · 931 Bytes
/
vercel.json
File metadata and controls
49 lines (49 loc) · 931 Bytes
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
{
"version": 2,
"framework": null,
"buildCommand": "echo 'Skipping build - handled by vercel-php runtime'",
"outputDirectory": "public",
"functions": {
"api/index.php": {
"runtime": "vercel-php@0.9.0"
}
},
"routes": [
{
"src": "^/build/(.*)$",
"dest": "/public/build/$1"
},
{
"src": "^/css/(.*)$",
"dest": "/public/css/$1"
},
{
"src": "^/js/(.*)$",
"dest": "/public/js/$1"
},
{
"src": "^/images/(.*)$",
"dest": "/public/images/$1"
},
{
"src": "^/fonts/(.*)$",
"dest": "/public/fonts/$1"
},
{
"src": "^/favicon\\.ico$",
"dest": "/public/favicon.ico"
},
{
"src": "^/robots\\.txt$",
"dest": "/public/robots.txt"
},
{
"src": "^/storage/(.*)$",
"dest": "/public/storage/$1"
},
{
"src": "/(.*)",
"dest": "/api/index.php"
}
]
}