thornhill-tv/src-vue/index.html
2023-11-14 16:21:47 +01:00

25 lines
No EOL
808 B
HTML

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-capable" content="yes">
<title><%- title %></title>
<script defer src="./main.js" type="module"></script>
<style>
@import '../node_modules/destyle.css/destyle.min.css';
:root {
color-scheme: dark;
}
:focus-visible {
outline: none;
}
@font-face {
font-family: 'Apple';
src: url('./static/fonts/Apple.woff2') format('woff2');
}
</style>
</head>
<body class="App"></body>
</html>