-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
48 lines (48 loc) · 883 Bytes
/
Copy pathwrangler.jsonc
File metadata and controls
48 lines (48 loc) · 883 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"account_id": "CHANGEME_ACCOUNT_ID",
"compatibility_date": "CHANGEME_TODAYS_DATE",
"compatibility_flags": ["nodejs_compat"],
"main": "./src/worker.ts",
"name": "CHANGEME_PROJECT_NAME",
"assets": {
"binding": "ASSETS"
},
"workers_dev": true,
"preview_urls": true,
"routes": [
{
"pattern": "CHANGEME_CUSTOM_DOMAIN",
"custom_domain": true
}
],
"images": {
"binding": "IMAGES",
"remote": true
},
"version_metadata": {
"binding": "CF_VERSION_METADATA"
},
"observability": {
"logs": {
"enabled": true,
"invocation_logs": true,
"head_sampling_rate": 1,
"persist": true
},
"traces": {
"enabled": true,
"head_sampling_rate": 1,
"persist": true
}
},
"limits": {
"cpu_ms": 60000
},
"kv_namespaces": [
{
"binding": "SESSION"
}
],
"upload_source_maps": true
}