blob: 4aec952bbea10ea6cc2fbe8e23d188c55ca70b50 (
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
|
{
"$schema": "node_modules/wrangler/config-schema.json",
"compatibility_flags": ["nodejs_compat"],
"compatibility_date": "2025-02-05",
"name": "api-zue-dev",
"main": "source/main.js",
"observability": {
"enabled": true,
"head_sampling_rate": 1
},
"browser": {
"binding": "MYBROWSER"
},
"env": {
"production": {
"routes": [
{
"pattern": "api.zue.dev",
"custom_domain": true
}
],
"secrets_store_secrets": [
{
"binding": "GOOGLE_API_KEY_UNRESTRICTED",
"store_id": "df48b01a29a44fe59118b31da3abacbd",
"secret_name": "google-api-key-unrestricted"
}
]
}
}
}
|