-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
41 lines (41 loc) · 1008 Bytes
/
wrangler.jsonc
File metadata and controls
41 lines (41 loc) · 1008 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
36
37
38
39
40
41
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "portfolio",
"main": "./dist/_worker.js/index.js",
"compatibility_date": "2025-09-15",
"compatibility_flags": ["nodejs_compat"],
"preview_urls": true,
"workers_dev": false,
"dev": {
"port": 8787
},
"routes": [
{
"pattern": "mrugesh.dev",
"custom_domain": true
}
],
"assets": {
"binding": "ASSETS",
"directory": "./dist",
"html_handling": "drop-trailing-slash"
},
"vars": {
"PUBLIC_SENTRY_DSN": "https://e8c88c11abffd1e5b5c581de57321642@o4507798912958464.ingest.us.sentry.io/4510267624128512",
"PUBLIC_SENTRY_ENVIRONMENT": "production"
},
"env": {
"preview": {
"vars": {
"PUBLIC_SENTRY_DSN": "https://e8c88c11abffd1e5b5c581de57321642@o4507798912958464.ingest.us.sentry.io/4510267624128512",
"PUBLIC_SENTRY_ENVIRONMENT": "development"
}
}
},
"observability": {
"enabled": true
},
"placement": {
"mode": "smart"
}
}