fix: add wrangler.jsonc for Pages static asset deployment
Configure Cloudflare Pages to deploy the dist directory as static assets. This fixes the deployment error "Missing entry-point to Worker script". The frontend (static assets) will be served by Pages while the backend (WebSocket server, Durable Objects) runs separately as a Worker. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
parent
71e7e5de05
commit
52c1af6864
|
|
@ -0,0 +1,7 @@
|
||||||
|
{
|
||||||
|
"name": "jeffemmett-canvas",
|
||||||
|
"compatibility_date": "2025-11-16",
|
||||||
|
"assets": {
|
||||||
|
"directory": "./dist"
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue