feishin/src/renderer/index.html

23 lines
465 B
HTML
Raw Normal View History

<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="Content-Security-Policy" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Feishin</title>
2025-05-24 03:47:14 -07:00
<% if (web) { %>
<link rel="icon" href="./assets/favicon.ico">
<script src="settings.js"></script>
<% } %>
</head>
<body>
<div id="root">
<script type="module" src="main.tsx"></script>
</div>
</body>
</html>