template-tauri1-vue3-vite3/src-vue/index.html
2022-08-07 17:35:17 +02:00

19 lines
No EOL
619 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>
<%- devtoolsScriptTags %>
<script defer src="./main.js" type="module"></script>
<style>
@import '../node_modules/destyle.css/destyle.min.css';
:root {
color-scheme: dark;
}
</style>
</head>
<body class="App"></body>
</html>