-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
63 lines (63 loc) · 1.64 KB
/
vercel.json
File metadata and controls
63 lines (63 loc) · 1.64 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"regions": [
"hnd1"
],
"builds": [
{
"src": "/api/index.php",
"use": "vercel-php@0.9.0",
"config": {
"excludeFiles": [
".git/**",
"tests/**",
"*.md",
"vercel.json",
".vercelignore"
]
}
},
{
"src": "/public/**",
"use": "@vercel/static"
}
],
"routes": [
{
"src": "/build/assets/(.*)",
"dest": "/public/build/assets/$1"
},
{
"src": "/favicon.(.*)",
"dest": "/public/favicon.$1"
},
{
"src": "/apple-touch-icon.png",
"dest": "/public/apple-touch-icon.png"
},
{
"src": "/robots.txt",
"dest": "/public/robots.txt"
},
{
"src": "/(.*)",
"dest": "/api/index.php"
}
],
"env": {
"APP_NAME": "Feedable",
"APP_DEBUG": "false",
"APP_LOCALE": "ja",
"APP_CONFIG_CACHE": "/tmp/config.php",
"APP_EVENTS_CACHE": "/tmp/events.php",
"APP_PACKAGES_CACHE": "/tmp/packages.php",
"APP_ROUTES_CACHE": "/tmp/routes.php",
"APP_SERVICES_CACHE": "/tmp/services.php",
"CACHE_STORE": "failover",
"LOG_CHANNEL": "stderr",
"SESSION_DRIVER": "cookie",
"VIEW_COMPILED_PATH": "/tmp",
"SALVAGER_AGENT_BROWSER_PATH": "npx agent-browser",
"AGENT_BROWSER_SOCKET_DIR": "/tmp/"
}
}