Monorepo for Tangled tangled.org
771
fork

Configure Feed

Select the types of activity you want to include in your feed.

at sl/pdsmigration 54 lines 990 B view raw
1{ 2 "$schema": "node_modules/wrangler/config-schema.json", 3 "name": "ogre", 4 "main": "src/index.tsx", 5 "compatibility_date": "2026-03-07", 6 "observability": { 7 "enabled": true, 8 }, 9 "limits": { 10 "cpu_ms": 300000 11 }, 12 "routes": [ 13 { 14 "pattern": "ogre.tangled.network", 15 "custom_domain": true, 16 }, 17 ], 18 "vars": { 19 "ENVIRONMENT": "production", 20 }, 21 "rules": [ 22 { 23 "type": "Data", 24 "globs": ["**/*.wasm", "**/*.woff"], 25 "fallthrough": true, 26 }, 27 ], 28 "env": { 29 "dev": { 30 "name": "ogre-dev", 31 "vars": { 32 "ENVIRONMENT": "development" 33 }, 34 "routes": [ 35 { 36 "pattern": "ogre-dev.tangled.network", 37 "custom_domain": true 38 } 39 ] 40 }, 41 "production": { 42 "name": "ogre", 43 "vars": { 44 "ENVIRONMENT": "production" 45 }, 46 "routes": [ 47 { 48 "pattern": "ogre.tangled.network", 49 "custom_domain": true 50 } 51 ] 52 } 53 } 54}