-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
65 lines (65 loc) · 1.2 KB
/
wrangler.jsonc
File metadata and controls
65 lines (65 loc) · 1.2 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "silroad",
"main": ".svelte-kit/cloudflare/_worker.js",
"compatibility_date": "2025-08-02",
"compatibility_flags": ["nodejs_compat"],
"vars": {
"NODE_ENV": "production"
},
"assets": {
"binding": "ASSETS",
"directory": ".svelte-kit/cloudflare"
},
"env": {
"dev": {
"vars": {
"NODE_ENV": "development"
}
}
},
"observability": {
"enabled": true
},
"routes": [
{
"pattern": "silroad.space",
"custom_domain": true
},
{
"pattern": "www.silroad.space",
"custom_domain": true
}
],
"d1_databases": [
{
"binding": "DB",
"database_name": "silroad",
"database_id": "593db8b3-fa2d-452b-92db-ac7c7d3f4659",
"migrations_dir": "drizzle/"
}
],
"kv_namespaces": [
{
"binding": "KV",
"id": "819395fc9c1c4e7c97cef038f7d4d88c",
"preview_id": "f022f4074ec9401c9d5d1e38df373360"
}
],
"analytics_engine_datasets": [
{
"binding": "LOGGER",
"dataset": "silroad_logs"
}
],
"r2_buckets": [
{
"bucket_name": "silroad",
"binding": "BUCKET"
}
]
}