-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
50 lines (50 loc) · 1.32 KB
/
wrangler.jsonc
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "gentest",
"main": "src/index.ts",
"compatibility_date": "2025-01-24",
"workers_dev": true,
"observability": {
"logs": {
"enabled": true,
"invocation_logs": true
}
},
"routes": [
{
"pattern": "adamcbloom.com",
"custom_domain": true
}
],
"assets": {
"directory": "./public",
"binding": "ASSETS",
"not_found_handling": "single-page-application",
"html_handling": "auto-trailing-slash",
"run_worker_first": true
},
"vars": {
"ENVIRONMENT": "production",
"CLOUDFLARE_ACCOUNT_ID": "5ce0d3512f15df9319e5de046f66cdf0"
},
"r2_buckets": [
{
"binding": "SCREENSHOTS",
"bucket_name": "illgitthat-screenshots",
"preview_bucket_name": "illgitthat-screenshots",
"remote": true
}
],
"kv_namespaces": [
{
"binding": "SITES",
"id": "fcbfa05ea0a44cf7b395ed6a94600641",
"preview_id": "fcbfa05ea0a44cf7b395ed6a94600641"
}
// Uncomment to enable rate limiting:
// {
// "binding": "RATE_LIMIT",
// "id": "<your-kv-namespace-id>",
// "preview_id": "<your-preview-kv-namespace-id>"
// }
]
}