Merge goalie-tester worktree: modes, 3v3 goalies, OOB faceoffs, CF deploy.

Bring main menu (1v1/3v3), scrimmage with nets and goalies, dead-puck
whistles at the nearest faceoff circle, skater board re-entry, and
Cloudflare Workers/Pages deploy config. Keep main jersey gear stack and
compact goalie floaters.
This commit is contained in:
ryanfitzpatrickio
2026-08-03 10:41:13 -05:00
parent 7d28facd68
commit f9aa382f30
18 changed files with 3121 additions and 130 deletions
+17
View File
@@ -0,0 +1,17 @@
{
"$schema": "./node_modules/wrangler/config-schema.json",
// tilt — static front-end on Workers (assets only, no server Worker code).
// Build first: `npm run build` → uploads `dist/`.
"name": "tilt",
"compatibility_date": "2026-08-03",
"assets": {
"directory": "./dist",
// Multi-page site (index.html + character.html), not a client-side router SPA.
// Missing paths return 404 rather than rewriting everything to index.html.
"not_found_handling": "404-page",
"html_handling": "auto-trailing-slash"
},
"observability": {
"enabled": true
}
}