-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
33 lines (33 loc) · 809 Bytes
/
wrangler.jsonc
File metadata and controls
33 lines (33 loc) · 809 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
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "startkit",
"main": "@tanstack/react-start/server-entry",
"compatibility_date": "2025-09-26",
"compatibility_flags": ["nodejs_compat"],
"observability": {
"enabled": true
},
"d1_databases": [
{
"binding": "DB",
"database_name": "startkit-db",
"database_id": "0787cf91-aa72-44c7-a345-0bded2cb6c20",
"migrations_dir": "migrations"
}
],
"preview_urls": true,
"workers_dev": true,
"env": {
"preview": {
"name": "startkit-preview",
"d1_databases": [
{
"binding": "DB",
"database_name": "startkit-preview-db",
"database_id": "9e987c2e-f51b-4df2-82c5-2c07141d1a9c",
"migrations_dir": "migrations"
}
]
}
}
}