Skip to content

Commit e745d54

Browse files
authored
chore: add wrangler.jsonc (#1151)
1 parent cc7c67b commit e745d54

File tree

1 file changed

+46
-0
lines changed

1 file changed

+46
-0
lines changed

apps/website/wrangler.jsonc

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
/**
2+
* For more details on how to configure Wrangler, refer to:
3+
* https://developers.cloudflare.com/workers/wrangler/configuration/
4+
*/
5+
{
6+
"$schema": "node_modules/wrangler/config-schema.json",
7+
"name": "qwik-ui-site",
8+
"compatibility_date": "2025-09-27",
9+
"assets": {
10+
// The path to the directory containing the `index.html` file to be served at `/`
11+
"directory": "../../dist/apps/website/client"
12+
},
13+
"observability": {
14+
"enabled": true
15+
}
16+
/**
17+
* Smart Placement
18+
* Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
19+
*/
20+
// "placement": { "mode": "smart" }
21+
/**
22+
* Bindings
23+
* Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
24+
* databases, object storage, AI inference, real-time communication and more.
25+
* https://developers.cloudflare.com/workers/runtime-apis/bindings/
26+
*/
27+
/**
28+
* Environment Variables
29+
* https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
30+
*/
31+
// "vars": { "MY_VARIABLE": "production_value" }
32+
/**
33+
* Note: Use secrets to store sensitive data.
34+
* https://developers.cloudflare.com/workers/configuration/secrets/
35+
*/
36+
/**
37+
* Static Assets
38+
* https://developers.cloudflare.com/workers/static-assets/binding/
39+
*/
40+
// "assets": { "directory": "./public/", "binding": "ASSETS" }
41+
/**
42+
* Service Bindings (communicate between multiple Workers)
43+
* https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
44+
*/
45+
// "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
46+
}

0 commit comments

Comments
 (0)