branch:
wrangler.jsonc
722 bytesRaw
{
"$schema": "../../node_modules/wrangler/config-schema.json",
"name": "worker-bundler-playground",
"main": "src/server.ts",
"compatibility_date": "2026-03-06",
"compatibility_flags": ["nodejs_compat", "experimental"],
"assets": {
"not_found_handling": "single-page-application",
"run_worker_first": ["/agents/*", "/preview/*"]
},
"ai": {
"binding": "AI",
"remote": true
},
"durable_objects": {
"bindings": [
{
"name": "WorkerPlayground",
"class_name": "WorkerPlayground"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["WorkerPlayground"]
}
],
"worker_loaders": [
{
"binding": "LOADER"
}
]
}