mirror of
https://github.com/koala73/worldmonitor.git
synced 2026-04-25 17:14:57 +02:00
* fix(pro): bake Clerk publishable key into /pro static bundle The pro-test Vite app builds to public/pro/ as committed static files. VITE_CLERK_PUBLISHABLE_KEY was set in Vercel but never available during the local Vite build, so the JS bundle shipped without it, causing "VITE_CLERK_PUBLISHABLE_KEY not set" at runtime on Get Started click. Added .env.production with the publishable key and rebuilt the bundle. * fix(pro): track .env.production so build is reproducible, drop unrelated api.d.ts Un-ignore pro-test/.env.production (publishable key is public by design) so a clean checkout + npm run build:pro produces a working bundle. Reverted unrelated convex/_generated/api.d.ts churn from the first commit.