A daily game
at main 25 lines 712 B view raw
1{ 2 "name": "gridly", 3 "main": "./dist/worker/serve-cloudflare.js", 4 // https://developers.cloudflare.com/workers/platform/compatibility-dates 5 "compatibility_date": "2024-11-11", 6 // nodejs_als is required for Waku server-side request context 7 // It can be removed if only building static pages 8 "compatibility_flags": ["nodejs_als"], 9 // https://developers.cloudflare.com/workers/static-assets/binding/ 10 "assets": { 11 "binding": "ASSETS", 12 "directory": "./dist/assets", 13 "html_handling": "drop-trailing-slash", 14 "not_found_handling": "404-page", 15 }, 16 "vars": { 17 "MAX_ITEMS": 10, 18 }, 19 "routes": [ 20 { 21 "pattern": "gridly.emarref.net", 22 "custom_domain": true, 23 }, 24 ], 25}