Files
firezone/rust/gui-client/index.html
Jamil 339af8d7ab refactor(gui-client): embed fonts directly (#9398)
This will prevent the fonts from failing to load if the user has no
internet connection.

Tested.
2025-06-04 21:43:23 +00:00

13 lines
418 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="shortcut icon" href="data:image/x-icon;," type="image/x-icon" />
<link rel="stylesheet" href="src-frontend/main.css" />
<script type="module" src="src-frontend/main.tsx"></script>
<title>Firezone</title>
</head>
<body id="root" />
</html>