wrangler.jsonc (1506B)
1 { 2 "$schema": "node_modules/wrangler/config-schema.json", 3 "main": ".open-next/worker.js", 4 "name": "ba-cafe", 5 "compatibility_date": "2026-07-19", 6 "compatibility_flags": [ 7 "nodejs_compat" 8 ], 9 "assets": { 10 "directory": ".open-next/assets", 11 "binding": "ASSETS" 12 }, 13 "vars": { 14 "NEXT_PUBLIC_SUPABASE_URL": "https://kbbimysekzwcvqllobdt.supabase.co", 15 "NEXT_PUBLIC_SUPABASE_ANON_KEY": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImtiYmlteXNla3p3Y3ZxbGxvYmR0Iiwicm9sZSI6ImFub24iLCJpYXQiOjE3NjczMDA3NjIsImV4cCI6MjA4Mjg3Njc2Mn0.zSUXB_b5foOVNp8KZaixam-nO74D38dJH0XPasvFYlM", 16 "NEXT_PUBLIC_ONESIGNAL_APP_ID": "04507e22-6ec2-44cf-9e5c-d37b1ab2d5e7" 17 }, 18 "observability": { 19 "logs": { 20 "enabled": true, 21 "invocation_logs": true 22 } 23 }, 24 "services": [ 25 { 26 // Self-reference service binding, the service name must match the worker name 27 // see https://opennext.js.org/cloudflare/caching 28 "binding": "WORKER_SELF_REFERENCE", 29 "service": "ba-cafe" 30 } 31 ], 32 "r2_buckets": [ 33 // Use R2 incremental cache 34 // See https://opennext.js.org/cloudflare/caching 35 { 36 "binding": "NEXT_INC_CACHE_R2_BUCKET", 37 // Create the bucket before deploying 38 // You can change the bucket name if you want 39 // See https://developers.cloudflare.com/workers/wrangler/commands/#r2-bucket-create 40 "bucket_name": "ba-cafe-opennext-cache" 41 } 42 ], 43 "images": { 44 // Enable image optimization 45 // see https://opennext.js.org/cloudflare/howtos/image 46 "binding": "IMAGES" 47 } 48 }