mirror of
https://github.com/outbackdingo/firezone.git
synced 2026-01-27 10:18:54 +00:00
This will prevent the fonts from failing to load if the user has no internet connection. Tested.
13 lines
418 B
HTML
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>
|