forked from cloudflare/cloudflare-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
26 lines (26 loc) · 714 Bytes
/
Copy pathwrangler.jsonc
File metadata and controls
26 lines (26 loc) · 714 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
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "cloudflare-docs",
"account_id": "b54f07a6c269ecca2fa60f1ae4920c99",
"compatibility_date": "2025-06-02",
"compatibility_flags": ["nodejs_compat"],
"main": "./worker/index.ts",
"workers_dev": true,
"route": {
"pattern": "developers.cloudflare.com/*",
"zone_name": "developers.cloudflare.com",
},
"rules": [
{ "type": "Text", "globs": ["**/__redirects"], "fallthrough": true },
],
"assets": {
"directory": "./dist",
"binding": "ASSETS",
"not_found_handling": "404-page",
"run_worker_first": true,
},
"r2_buckets": [{ "binding": "MIDDLECACHE", "bucket_name": "middlecache" }],
"observability": {
"enabled": true,
},
}