-
-
Notifications
You must be signed in to change notification settings - Fork 874
Expand file tree
/
Copy pathwrangler.jsonc
More file actions
28 lines (28 loc) · 658 Bytes
/
wrangler.jsonc
File metadata and controls
28 lines (28 loc) · 658 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
/**
* 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": "swiper-website",
"main": "src/worker/index.ts",
"compatibility_date": "2025-11-17",
"assets": {
"binding": "ASSETS",
"directory": "./out",
"not_found_handling": "none",
"html_handling": "auto-trailing-slash",
"run_worker_first": [
"/*",
"!/_next/*",
"!/images/*",
"!/demos/*",
"!/scripts/*",
"!/types/*",
"!/mcp-data/*",
],
},
"observability": {
"enabled": false,
},
}