There was no favicon at all -- index.html never linked one, and the frontend Dockerfile's build stage never copied the public/ directory into the build context, so even after adding public/favicon.svg locally, the containerized build silently dropped it (nginx fell back to serving index.html for that path). Fixed both: index.html links /favicon.svg, and the Dockerfile now copies public/ alongside src/. The favicon reuses the existing BrandMark glyph (petrol background, teal accent) for visual consistency with the in-app brand mark. A regression test for this lives in the earlier translation-fix commit (frontend/e2e/fleet-ops-correction.spec.ts), added together with the fix at the time.
15 lines
444 B
HTML
15 lines
444 B
HTML
<!doctype html>
|
|
<html lang="nl">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<meta name="description" content="Fleet Ops synthetic-data operations demo" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<title>Fleet Ops</title>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/main.tsx"></script>
|
|
</body>
|
|
</html>
|