fix(web): kein Caching der UI + versionierte Assets

Safari cachte CSS/JS aggressiv -> Aenderungen wurden nicht sichtbar. StaticFiles
liefert die UI nun mit Cache-Control: no-cache aus; Asset-Links zusaetzlich
versioniert (?v=3), damit die neue Version sicher geladen wird.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Dieter Schlüter 2026-06-18 07:49:55 +02:00
commit b3c8114469
2 changed files with 12 additions and 3 deletions

View file

@ -4,7 +4,7 @@
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Voice Assistant</title>
<link rel="stylesheet" href="/style.css" />
<link rel="stylesheet" href="/style.css?v=3" />
</head>
<body>
<div id="layout">
@ -31,6 +31,6 @@
<div id="status" class="muted"></div>
</main>
</div>
<script src="/app.js"></script>
<script src="/app.js?v=3"></script>
</body>
</html>