Files
website/wrangler.jsonc
T
2026-05-08 23:40:42 +08:00

36 lines
761 B
JSON

{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "eversoloweb",
"main": "cloudflare/worker.js",
"compatibility_date": "2026-05-08",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true
},
"vars": {
"NEXT_PUBLIC_SITE_URL": "https://eversoloweb.workers.dev"
},
"containers": [
{
"class_name": "EversoloWebContainer",
"image": "./Dockerfile.cloudflare",
"instance_type": "standard-1",
"max_instances": 1
}
],
"durable_objects": {
"bindings": [
{
"name": "EVERSOLO_WEB",
"class_name": "EversoloWebContainer"
}
]
},
"migrations": [
{
"tag": "v1",
"new_sqlite_classes": ["EversoloWebContainer"]
}
]
}