fix: correct dev worker URL after deployment

- jeffemmett-canvas-dev.jeffemmett.workers.dev is the actual deployed URL

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Jeff Emmett 2025-12-24 22:45:19 -05:00
parent 048ad1dec4
commit 5504bbd737
1 changed files with 2 additions and 2 deletions

View File

@ -11,8 +11,8 @@ const WORKER_ENV = import.meta.env.VITE_WORKER_ENV || 'production' // Default to
const WORKER_URLS = {
local: `http://${window.location.hostname}:5172`,
dev: "https://jeffemmett-canvas-automerge-dev.jeffemmett.workers.dev",
staging: "https://jeffemmett-canvas-automerge-dev.jeffemmett.workers.dev",
dev: "https://jeffemmett-canvas-dev.jeffemmett.workers.dev",
staging: "https://jeffemmett-canvas-dev.jeffemmett.workers.dev",
production: "https://jeffemmett-canvas.jeffemmett.workers.dev"
}