Rendering robuster + sichtbare Fehlermeldung + no-cache

- crossOrigin von Asset-Images entfernt (haeufige Ursache fuer "tainted canvas",
  wodurch der Szenen-Export fehlschlug -> kaputtes Bild)
- toBlob mit Fallback auf toDataURL
- Ladefehler werden jetzt sichtbar im UI angezeigt (statt nur Konsole)
- Frontend mit Cache-Control: no-cache -> kein veraltetes JS/CSS nach git pull

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Guido
2026-08-04 18:58:51 +02:00
parent b95464670a
commit adc0fae93f
4 changed files with 62 additions and 8 deletions

View File

@@ -269,6 +269,24 @@ html, body {
#next-scene:hover { background: var(--pink-soft); }
@keyframes pop { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }
/* ---- Fehleranzeige ---- */
#error-box {
position: absolute;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
max-width: 82%;
background: #2a1020;
color: #ffd0e2;
border: 1px solid var(--pink);
padding: 16px 20px;
border-radius: 12px;
font-size: 14px;
line-height: 1.4;
text-align: center;
z-index: 20;
}
.hidden { display: none !important; }
/* Mobile */