23 lines
612 B
HTML
23 lines
612 B
HTML
<!doctype html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" href="/static/icons/favicon.ico" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<!-- workaround for vitejs bundling -> reference https:// -->
|
|
<link
|
|
href="https://my.vbv-afa.ch/static/fonts/BuenosAires/stylesheet.css"
|
|
rel="stylesheet"
|
|
/>
|
|
<script defer src="/server/core/icons/"></script>
|
|
<!-- end workaround -->
|
|
|
|
<title>myVBV</title>
|
|
</head>
|
|
<body>
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|