-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvercel.json
More file actions
110 lines (110 loc) · 2.51 KB
/
Copy pathvercel.json
File metadata and controls
110 lines (110 loc) · 2.51 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"buildCommand": "npm run build",
"devCommand": "npm run dev",
"installCommand": "npm ci",
"framework": "nextjs",
"github": { "silent": true },
"outputDirectory": ".next",
"headers": [
{
"source": "/embed/(.*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{ "key": "Referrer-Policy", "value": "strict-origin-when-cross-origin" },
{ "key": "Permissions-Policy", "value": "camera=(), microphone=(), geolocation=()" }
]
},
{
"source": "/((?!embed/).*)",
"headers": [
{ "key": "X-Content-Type-Options", "value": "nosniff" },
{
"key": "Referrer-Policy",
"value": "strict-origin-when-cross-origin"
},
{
"key": "Permissions-Policy",
"value": "camera=(), microphone=(), geolocation=()"
},
{
"key": "Strict-Transport-Security",
"value": "max-age=63072000; includeSubDomains; preload"
}
]
}
],
"crons": [
{
"path": "/api/cron/morning-brief",
"schedule": "30 11 * * 1-5"
},
{
"path": "/api/cron/recovery-scan",
"schedule": "0 10 * * *"
},
{
"path": "/api/cron/follow-ups",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/follow-ups/execute",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/opportunity-scout",
"schedule": "0 8 * * *"
},
{
"path": "/api/cron/pilot-engagement",
"schedule": "0 15 * * *"
},
{
"path": "/api/cron/trial-expiry",
"schedule": "0 12 * * *"
},
{
"path": "/api/cron/weekly-digest",
"schedule": "0 10 * * 1"
},
{
"path": "/api/cron/dissent-digest",
"schedule": "0 11 * * 1"
},
{
"path": "/api/cron/war-room-sweep",
"schedule": "0 */6 * * *"
},
{
"path": "/api/cron/monitor",
"schedule": "0 8 * * *"
},
{
"path": "/api/cron/self-heal",
"schedule": "0 6 * * *"
},
{
"path": "/api/cron/purge-documents",
"schedule": "0 3 * * 0"
},
{
"path": "/api/cron/webhook-cleanup",
"schedule": "0 7 * * 1"
},
{
"path": "/api/cron/cache-purge",
"schedule": "0 3 * * 6"
},
{
"path": "/api/cron/memory-maintenance",
"schedule": "0 4 * * 0"
},
{
"path": "/api/cron/audit-retention",
"schedule": "0 6 * * 0"
},
{
"path": "/api/cron/gc-day",
"schedule": "0 2 * * 0"
}
]
}