summaryrefslogtreecommitdiff
path: root/wrangler.jsonc
blob: 425292426ec578f251884fbb55f5a6f771dc317d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{
    "name": "helloastrocf",
    "main": "./dist/_worker.js/index.js",
    "compatibility_date": "2025-07-10",
    "compatibility_flags": [
        "nodejs_compat"
    ],
    "assets": {
        "binding": "ASSETS",
        "directory": "./dist"
    },
    "observability": {
        "enabled": true
    },
    "durable_objects": {
        "bindings": [
            {
                "name": "COUNTER_DO",
                "class_name": "CounterDurableObject"
            }
        ]
    },
    "migrations": [
        {
            "tag": "v1",
            "new_sqlite_classes": [
                "CounterDurableObject"
            ]
        }
    ]
}