-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
29 lines (29 loc) · 615 Bytes
/
wrangler.jsonc
File metadata and controls
29 lines (29 loc) · 615 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
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "awesomeyou",
"main": "src/server/index.ts",
"compatibility_date": "2025-04-10",
"send_metrics": false,
"compatibility_flags": ["nodejs_compat"],
"durable_objects": {
"bindings": [
{
"name": "countty",
"class_name": "Countty"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["Countty"]
}
],
"dev": {
"port": 6061
}
}