Skip to content

Commit

Permalink
Use absolute path for favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
geirsagberg committed Jun 27, 2024
1 parent 30450d0 commit 143f9e6
Showing 1 changed file with 11 additions and 13 deletions.
24 changes: 11 additions & 13 deletions db-scheduler-ui-frontend/index.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
<!doctype html>
<html lang='en'>

<head>
<meta charset='UTF-8' />
<link rel="icon" type="image/svg+xml" href="./favicon.svg" />
<meta name='viewport' content='width=device-width, initial-scale=1.0' />
<html lang="en">
<head>
<meta charset="UTF-8" />
<link href="/db-scheduler/favicon.svg" rel="icon" type="image/svg+xml" />
<meta content="width=device-width, initial-scale=1.0" name="viewport" />
<title>DB Scheduler UI</title>
</head>

<body>
<div id='root'></div>
<script type='module' src='./main.tsx'></script>
</body>
</head>

</html>
<body>
<div id="root"></div>
<script src="./main.tsx" type="module"></script>
</body>
</html>

0 comments on commit 143f9e6

Please sign in to comment.