70bf21e064
Deploy (to testing) and Test Playground Preview Worker / Deploy Playground Preview Worker (testing) (push) Has been skipped
Deploy Workers Shared Staging / Deploy Workers Shared Staging (push) Failing after 0s
Prerelease / build (push) Has been skipped
Handle Changesets / Handle Changesets (push) Has been cancelled
Semgrep OSS scan / semgrep-oss (push) Has been cancelled
25 lines
583 B
JSON
25 lines
583 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": "browser-rendering",
|
|
"main": "src/index.ts",
|
|
"compatibility_date": "2025-12-01",
|
|
"observability": {
|
|
"enabled": true,
|
|
},
|
|
"compatibility_flags": ["nodejs_compat"],
|
|
"browser": {
|
|
"binding": "MYBROWSER",
|
|
},
|
|
"kv_namespaces": [
|
|
{
|
|
"binding": "BROWSER_KV_DEMO",
|
|
"id": "8a5482302d2e4bcb8186416eea7e38b1",
|
|
"preview_id": "8a5482302d2e4bcb8186416eea7e38b1",
|
|
},
|
|
],
|
|
}
|