just a website
0
fork

Configure Feed

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

Add observability config and add binding config under assets.

+17 -1
+17 -1
wrangler.jsonc
··· 4 4 "main": "src/index.js", 5 5 "assets": { 6 6 "directory": "./_site", 7 + "binding": "ASSETS", 7 8 "html_handling": "auto-trailing-slash", 8 9 "not_found_handling": "404-page" 9 10 }, ··· 15 16 "pattern": "rorylawless.com", 16 17 "custom_domain": true 17 18 } 18 - ] 19 + ], 20 + "observability": { 21 + "enabled": false, 22 + "head_sampling_rate": 1, 23 + "logs": { 24 + "enabled": true, 25 + "head_sampling_rate": 1, 26 + "persist": true, 27 + "invocation_logs": true 28 + }, 29 + "traces": { 30 + "enabled": true, 31 + "persist": true, 32 + "head_sampling_rate": 1 33 + } 34 + } 19 35 }