style: replace em dashes with hyphens throughout codebase

Replace all — with - in all source files (JS, CSS, HTML, JSON,
Markdown) for consistency and readability.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
Ulas
2026-04-03 17:04:39 +02:00
parent 6046cac7a8
commit 1122bd269b
56 changed files with 256 additions and 256 deletions
+2 -2
View File
@@ -94,7 +94,7 @@ app.use('/api/', (req, res, next) => {
});
// --------------------------------------------------------
// Statische Dateien (Frontend) differenzierte Caching-Strategie
// Statische Dateien (Frontend) - differenzierte Caching-Strategie
//
// HTML + JS + CSS: no-cache (Browser revalidiert via ETag/304, kein stale Content
// nach Deployment). Bei unverändertem File → 304 Not Modified ohne Übertragung.
@@ -113,7 +113,7 @@ app.use(express.static(path.join(__dirname, '..', 'public'), {
} else if (['.png', '.jpg', '.jpeg', '.ico', '.svg', '.webp', '.woff2', '.woff'].includes(ext)) {
res.setHeader('Cache-Control', 'public, max-age=2592000, immutable'); // 30 Tage
} else {
// HTML, JS, CSS, JSON, manifest, sw immer revalidieren
// HTML, JS, CSS, JSON, manifest, sw - immer revalidieren
res.setHeader('Cache-Control', 'no-cache, must-revalidate');
}
// manifest.json: korrekter MIME-Type für PWA-Erkennung durch Chrome/Android