-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathvercel.json
More file actions
29 lines (29 loc) · 791 Bytes
/
vercel.json
File metadata and controls
29 lines (29 loc) · 791 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
{
"$schema": "https://openapi.vercel.sh/vercel.json",
"functions": {
"src/pages/api/profiles/fetch-user-profile.tsx": {
"maxDuration": 30
},
"src/pages/api/share/fetch-shared-categories-data.ts": {
"maxDuration": 30
},
"src/pages/api/category/fetch-user-categories.ts": {
"maxDuration": 30
},
"src/pages/api/bookmark/fetch-bookmarks-data.ts": {
"maxDuration": 30
},
"src/pages/api/bookmark/fetch-bookmarks-count.ts": {
"maxDuration": 30
},
"src/pages/api/file/upload-file-remaining-data.tsx": {
"maxDuration": 300
},
"src/pages/api/bookmark/add-remaining-bookmark-data.ts": {
"maxDuration": 300
},
"src/pages/api/bookmark/add-url-screenshot.ts": {
"maxDuration": 300
}
}
}