-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
47 lines (47 loc) · 1.15 KB
/
wrangler.jsonc
File metadata and controls
47 lines (47 loc) · 1.15 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
/**
* For more details on how to configure Wrangler, refer to:
* https://developers.cloudflare.com/workers/wrangler/configuration/
*/ {
"$schema": "node_modules/wrangler/config-schema.json",
"account_id": "0d5d3a1ef1df71581f0d4ba61c3ea50f",
"assets": {
"binding": "ASSETS",
"directory": "./.output/public/",
},
"compatibility_date": "2026-02-01",
"compatibility_flags": ["nodejs_compat", "no_nodejs_compat_v2"],
"images": {
"binding": "IMAGES",
},
"keep_names": true,
"logpush": false,
"main": "./.output/server/index.mjs",
"minify": true,
"name": "affirm",
"observability": {
"enabled": true,
"logs": {
"enabled": true,
"head_sampling_rate": 1,
"invocation_logs": true,
},
},
"placement": {
"mode": "smart",
},
"preview_urls": true,
"send_metrics": true,
"upload_source_maps": true,
"version_metadata": {
"binding": "CF_VERSION_METADATA",
},
"workers_dev": true,
"d1_databases": [
{
"binding": "DB",
"database_id": "cb7d337c-9e00-40e2-b597-00d7b8577409",
"database_name": "affirm",
"migrations_dir": "server/database/migrations",
},
],
}