Files
tangfamily/wrangler.jsonc
2026-06-24 22:13:01 +08:00

27 lines
636 B
JSON

/**
* 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": "tangfamily",
"main": "src/index.ts",
"compatibility_date": "2026-02-17",
"compatibility_flags": [
"nodejs_compat",
"global_fetch_strictly_public"
],
"assets": {
// The path to the directory containing the `index.html` file to be served at `/`
"directory": "./public"
},
"observability": {
"enabled": true
},
"kv_namespaces": [
{
"binding": "FAMILY_DATA",
"id": "07e25767617e469aa297cdf79ceeb010"
}
]
}