branch:
wrangler.jsonc
589 bytesRaw
{
"$schema": "../../node_modules/wrangler/config-schema.json",
"name": "a2a-agent-demo",
"main": "src/server.ts",
"compatibility_date": "2026-01-28",
"compatibility_flags": ["nodejs_compat"],
"ai": { "binding": "AI", "remote": true },
"assets": {
"not_found_handling": "single-page-application",
"run_worker_first": ["/.well-known/*", "/a2a"]
},
"durable_objects": {
"bindings": [
{
"class_name": "MyA2A",
"name": "MyA2A"
}
]
},
"migrations": [
{
"new_sqlite_classes": ["MyA2A"],
"tag": "v1"
}
]
}