Monorepo for Tangled
tangled.org
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": "camo",
8 "main": "src/index.js",
9 "compatibility_date": "2025-04-30",
10 "observability": {
11 "enabled": true
12 }
13 /**
14 * Smart Placement
15 * Docs: https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement
16 */
17 // "placement": { "mode": "smart" },
18
19 /**
20 * Bindings
21 * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including
22 * databases, object storage, AI inference, real-time communication and more.
23 * https://developers.cloudflare.com/workers/runtime-apis/bindings/
24 */
25
26 /**
27 * Environment Variables
28 * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables
29 */
30 // "vars": { "MY_VARIABLE": "production_value" },
31 /**
32 * Note: Use secrets to store sensitive data.
33 * https://developers.cloudflare.com/workers/configuration/secrets/
34 */
35
36 /**
37 * Static Assets
38 * https://developers.cloudflare.com/workers/static-assets/binding/
39 */
40 // "assets": { "directory": "./public/", "binding": "ASSETS" },
41
42 /**
43 * Service Bindings (communicate between multiple Workers)
44 * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings
45 */
46 // "services": [{ "binding": "MY_SERVICE", "service": "my-service" }]
47}