branch:
wrangler.jsonc
782 bytesRaw
{
"$schema": "../../node_modules/wrangler/config-schema.json",
"name": "workers-ai-playground",
"main": "src/server.ts",
"compatibility_date": "2026-01-28",
"compatibility_flags": ["nodejs_compat"],
"assets": {
"not_found_handling": "single-page-application",
"run_worker_first": ["/api/*", "/agents/*"]
},
"ai": {
"binding": "AI",
"remote": true
},
"durable_objects": {
"bindings": [
{
"class_name": "Playground",
"name": "Playground"
}
]
},
"migrations": [
{
"new_sqlite_classes": ["Playground"],
"tag": "v1"
}
],
"observability": {
"logs": {
"enabled": true
},
"traces": {
"enabled": true
}
},
"vars": {
"HOST": "http://localhost:5173"
}
}