In production the esbuild builder fingerprints the @font-face url() and
emits the Material Symbols woff2 to /media/<hash>.woff2, but ngsw-config
only precached the unhashed /assets/fonts copy that nothing loads. The
font the app actually requests was therefore never in the service worker
cache and failed to load offline, leaving icons as their ligature names
(wb_sunny, settings, ...). iOS Safari surfaces this first because, unlike
Chrome, it does not fall back to the HTTP disk cache offline.
- prefetch /media/material-symbols-outlined-*.woff2 (the URL @font-face
actually requests)
- lazily cache the rest of /media (self-hosted Open Sans) so offline text
also keeps its font
- font-display: block so the brief load window shows blank glyph space
rather than the ligature names