Setup Cloudflare Workers static assets deployment

Adds wrangler.jsonc for static asset hosting and wrangler as a dev
dependency so the repo is ready to connect via Cloudflare's Workers
Builds Git integration.

Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
This commit is contained in:
2026-08-15 09:29:27 +07:00
co-authored by Claude Sonnet 5
parent 36defbc9df
commit 0aa03f9c06
4 changed files with 192 additions and 2 deletions
+9
View File
@@ -0,0 +1,9 @@
{
"$schema": "node_modules/wrangler/config-schema.json",
"name": "9router-config-generate",
"compatibility_date": "2026-08-15",
"assets": {
"directory": "./dist",
"not_found_handling": "single-page-application"
}
}