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