-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
64 lines (64 loc) · 1.34 KB
/
vercel.json
File metadata and controls
64 lines (64 loc) · 1.34 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
{
"crons": [
{
"path": "/api/queue/worker",
"schedule": "*/5 * * * *"
}
],
"functions": {
"app/api/queue/worker/route.ts": {
"maxDuration": 300
},
"app/api/documents/upload/route.ts": {
"maxDuration": 60
},
"app/api/documents/upload-enhanced/route.ts": {
"maxDuration": 60
},
"app/api/chat/route.ts": {
"maxDuration": 60
},
"app/api/**/*.ts": {
"maxDuration": 30
}
},
"headers": [
{
"source": "/api/(.*)",
"headers": [
{
"key": "Access-Control-Allow-Origin",
"value": "https://docsflow.app"
},
{
"key": "Access-Control-Allow-Methods",
"value": "GET, POST, PUT, DELETE, OPTIONS"
},
{
"key": "Access-Control-Allow-Headers",
"value": "Content-Type, Authorization, X-Tenant-ID"
},
{
"key": "Access-Control-Allow-Credentials",
"value": "true"
}
]
}
],
"rewrites": [
{
"source": "/app/:tenant/(.*)",
"destination": "/app/:tenant"
},
{
"source": "/app/:tenant",
"destination": "/app/[tenant]/page"
}
],
"redirects": [],
"buildCommand": "next build",
"outputDirectory": ".next",
"installCommand": "npm install",
"framework": "nextjs",
"public": true
}