22 lines
564 B
HTML
22 lines
564 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<link rel="icon" type="image/x-icon" href="/static/icon.png">
|
|
<style>
|
|
body, #outlet {
|
|
height: 100vh;
|
|
width: 100%;
|
|
margin: 0;
|
|
}
|
|
</style>
|
|
<title>Dragonestia LoadBalancer</title>
|
|
<!-- index.ts is included here automatically (either by the dev server or during the build) -->
|
|
</head>
|
|
<body>
|
|
<!-- This outlet div is where the views are rendered -->
|
|
<div id="outlet"></div>
|
|
</body>
|
|
</html>
|