Troubleshooting Board · 2026-06-20
One root cause · Eight pages fixed · Verified live on Vercel
Phase 1 · Inventory
Pulled every "fix this" from the Jun 19 to 20 Karen sessions, then checked each against the live page, not the local file.
Phase 2 · Triage + Fix
The art was deployed and returning 200, so the break was in how the browser resolved the path. Fixed the path on every affected page and redeployed.
Phase 3 · Showcase
Re-screenshotted the live Vercel URL after the fix. This board ships permanently to drwu-htmls.vercel.app.
The Root Cause
The cards were never missing. Every card file was deployed and returned 200 image/jpeg, byte-identical to local. The page just asked for them at the wrong address.
Your vercel.json sets cleanUrls: true and trailingSlash: false, so the page serves at /karen-two-row-reading-v2 with no trailing slash. A browser then resolves a relative src="cards/death.jpg" against the parent and requests /cards/death.jpg at the site root, where nothing exists.
Why it kept getting marked done. Opened locally as file://, the folder context is preserved, so the cards always rendered on this Mac. The break only showed on the live site. A local screenshot looked perfect, so the fix looked finished while the live page stayed blank.
The fix. Every card reference is now root-absolute, for example /karen-two-row-reading-v2/cards/death.jpg, which resolves correctly no matter how Vercel serves the URL.


Every Affected Page
| Page | Refs fixed | Status | Live |
|---|---|---|---|
| karen-two-row-reading-v2 the one you linked | 21 | ● FIXED + verified | open |
| karen-two-row-reading (v1) | 11 | ● FIXED + verified | open |
| karen-two-row-reading-v3 Chiron dual-deck | 10 | ● FIXED + verified | open |
| chiron-tarot-meanings-v4 | 31 | ● FIXED | open |
| chiron-secret-thoughts-v3 | 14 | ● FIXED | open |
| midi-robot-explainer audio + midi + video | 139 | ● FIXED | open |
| believeyoume-candidate-songs | 8 | ● FIXED | open |
| believeyoume-candidate-book | 9 | ● FIXED | open |
From Your Chats
| What you asked | Where | Status |
|---|---|---|
| "art is missing" / "the cards are cut up" / "art is truncated" | Jun 19, v2 + v3 sessions | ● ROOT CAUSE found + fixed live |
| "bold all card names, bold one key phrase per sentence" | Jun 19 build | ● present in v2 |
| "put the card spread as a freeze so I scroll and they stay up" | Jun 19 build | ● sticky rail present in v2 |
| "add Rider-Waite cards / put the tarot cards in" | Jun 19 build | ● real RWS art, now rendering live |
| "there's a bigger Kate archive with every combo, why do we keep losing it" | Jun 19 build | ● investigated, see below |
| "4 rows not 2 rows" / "smaller font" | Jun 19, v3 / chiron pages | ● layout request, not yet changed |
The Honest Answer
Separate Findings
| Page | What is actually wrong | Status |
|---|---|---|
| believeyoume-candidate-songs & -book | The lyrics/*.txt files (10 links) do not exist on disk, so the lyric links 404 even with correct paths. The notation images were the path bug and are fixed. | ● needs the lyric files |
| daughters-through-the-years | The photos/ are absent at every path, not a relative-path issue. The photo set was never deployed. | ● needs the photos |
| christian-books-dashboard | The covers/ images are absent at every path. Same shape, missing files rather than wrong paths. | ● needs the covers |