-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.dev.jsonc
More file actions
35 lines (35 loc) · 988 Bytes
/
Copy pathwrangler.dev.jsonc
File metadata and controls
35 lines (35 loc) · 988 Bytes
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
32
33
34
35
{
"$schema": "./node_modules/wrangler/config-schema.json",
"name": "ibamboo-dev",
"main": "worker/index.ts",
"compatibility_date": "2026-07-01",
"assets": {
"directory": "./dist",
"binding": "ASSETS",
"not_found_handling": "single-page-application",
"run_worker_first": true
},
// Local dev copy of wrangler.jsonc WITHOUT the custom-domain routes:
// wrangler dev (v4) answers every request whose Host doesn't match a
// custom_domain route with a 301 to itself, which makes local smoke tests
// impossible. Production deploys use wrangler.jsonc (with routes).
"workers_dev": true,
"observability": {
"enabled": true
},
"send_email": [
{
"name": "EMAIL",
"allowed_sender_addresses": [
"hello@ibamboo.com",
"vibe@ibamboo.com",
"noreply@ibamboo.com"
]
}
],
"vars": {
"EMAIL_FROM": "hello@ibamboo.com",
"EMAIL_FROM_NAME": "iBamboo",
"EMAIL_REPLY_TO": "hello@ibamboo.com"
}
}