Skip to content

Commit 8deaecd

Browse files
committed
fix(branding): update favicon
1 parent a20bea0 commit 8deaecd

File tree

4 files changed

+22
-3
lines changed

4 files changed

+22
-3
lines changed

branding/favicon-rh.svg

Lines changed: 19 additions & 0 deletions
Loading

branding/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"name": "RHTAS Console UI",
44
"icons": [
55
{
6-
"src": "favicon.ico",
6+
"src": "favicon-rh.svg",
77
"sizes": "64x64 32x32 24x24 16x16",
88
"type": "image/x-icon"
99
}

client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<meta name="theme-color" content="#000000"/>
1010
<meta name="version" content="2.0.0"/>
1111
<link rel="manifest" href="/manifest.json"/>
12-
<link rel="icon" href="/favicon.ico"/>
12+
<link rel="icon" href="/favicon-rh.svg"/>
1313
<base href="/"/>
1414
<script>
1515
window._env = "<%= _env %>";

client/vite.config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const brandingAssetPath = () =>
1717

1818
const brandingPath: string = brandingAssetPath();
1919
const manifestPath = path.resolve(brandingPath, "manifest.json");
20-
const faviconPath = path.resolve(brandingPath, "favicon.ico");
20+
const faviconPath = path.resolve(brandingPath, "favicon-rh.svg");
2121

2222
// https://vite.dev/config/
2323
export default defineConfig({

0 commit comments

Comments
 (0)