-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
36 lines (36 loc) · 1.02 KB
/
Copy pathwrangler.jsonc
File metadata and controls
36 lines (36 loc) · 1.02 KB
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
36
{
"$schema": "./node_modules/wrangler/config-schema.json",
// Bayan Flow — static Vite SPA on Cloudflare Workers (not Pages).
"name": "bayan-flow",
"main": "worker/index.js",
"compatibility_date": "2026-06-23",
"workers_dev": true,
"preview_urls": true,
"assets": {
"directory": "./dist",
"not_found_handling": "single-page-application",
"run_worker_first": true,
"binding": "ASSETS"
},
"env": {
"staging": {
"name": "bayan-flow-staging",
"workers_dev": true,
"preview_urls": true,
"routes": [
{ "pattern": "dev.bayanflow.com", "custom_domain": true },
{ "pattern": "e.dev.bayanflow.com", "custom_domain": true }
]
},
"production": {
"name": "bayan-flow",
"workers_dev": true,
"preview_urls": true,
"routes": [
{ "pattern": "bayanflow.com", "custom_domain": true },
{ "pattern": "www.bayanflow.com", "custom_domain": true },
{ "pattern": "e.bayanflow.com", "custom_domain": true }
]
}
}
}