/** * 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": "blento", "main": ".svelte-kit/cloudflare/_worker.js", "compatibility_date": "2025-12-25", "compatibility_flags": ["nodejs_als"], "assets": { "binding": "ASSETS", "directory": ".svelte-kit/cloudflare" }, "observability": { "enabled": true }, /** * Smart Placement * https://developers.cloudflare.com/workers/configuration/smart-placement/#smart-placement */ // "placement": { "mode": "smart" } /** * Bindings * Bindings allow your Worker to interact with resources on the Cloudflare Developer Platform, including * databases, object storage, AI inference, real-time communication and more. * https://developers.cloudflare.com/workers/runtime-apis/bindings/ */ /** * Environment Variables * https://developers.cloudflare.com/workers/wrangler/configuration/#environment-variables * Note: Use secrets to store sensitive data. * https://developers.cloudflare.com/workers/configuration/secrets/ */ "vars": { "PUBLIC_HANDLE": "blento.app", "PUBLIC_IS_SELFHOSTED": "", "PUBLIC_DOMAIN": "https://blento.app", "PUBLIC_GIPHY_API_TOKEN": "ltXijv1bkNPrEgnpJ0tIdLWXjnAeE7bL" }, "kv_namespaces": [ { "binding": "USER_DATA_CACHE", "id": "d6ff203259de48538d332b0a5df258a7" } ] /** * Service Bindings (communicate between multiple Workers) * https://developers.cloudflare.com/workers/wrangler/configuration/#service-bindings */ // "services": [ { "binding": "MY_SERVICE", "service": "my-service" } ] }