just a website
0
fork

Configure Feed

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

Update deploy command and fix compatibility date in wrangler configuration

+4 -3
+1 -1
.tangled/workflows/deploy.yaml
··· 10 10 11 11 steps: 12 12 - name: deploy 13 - command: "bunx wrangler deploy" 13 + command: "bunx wrangler deploy --config ./wrangler.jsonc"
+3 -2
wrangler.jsonc
··· 1 1 { 2 + "$schema": "./node_modules/wrangler/config-schema.json", 2 3 "name": "website", 3 - "compatibility_date": "2026-05-01", 4 + "compatibility_date": "2026-04-30", 4 5 "assets": { 5 - "directory": "_site", 6 + "directory": "./_site", 6 7 "html_handling": "auto-trailing-slash", 7 8 "not_found_handling": "404-page" 8 9 },