mirror of
https://github.com/cloudflare/vinext.git
synced 2026-09-14 19:04:59 +08:00
33 lines
960 B
JSON
33 lines
960 B
JSON
{
|
|
"$schema": "node_modules/wrangler/config-schema.json",
|
|
"name": "workers-cache",
|
|
// Workers Cache requires a recent compatibility date — bumping closer to
|
|
// release should be done once miniflare ships a newer workerd. See
|
|
// https://developers.cloudflare.com/workers/cache/
|
|
"compatibility_date": "2026-04-08",
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"main": "vinext/server/fetch-handler",
|
|
"preview_urls": true,
|
|
"account_id": "d48e2eb599d9aa075d5e682deaecc518",
|
|
"assets": {
|
|
"directory": "dist/client",
|
|
"not_found_handling": "none",
|
|
"binding": "ASSETS",
|
|
},
|
|
"observability": {
|
|
"enabled": true,
|
|
"head_sampling_rate": 1,
|
|
"logs": {
|
|
"enabled": true,
|
|
"invocation_logs": true,
|
|
},
|
|
"traces": {
|
|
"enabled": true,
|
|
},
|
|
},
|
|
"version_metadata": {
|
|
"binding": "CF_VERSION_METADATA",
|
|
},
|
|
"kv_namespaces": [{ "binding": "VINEXT_KV_CACHE", "id": "b38f84f642aa4bd4ba17a37bb516f0b5" }],
|
|
}
|