Files
feishin/src/renderer/index.html
T
2025-09-22 18:24:04 -07:00

23 lines
497 B
HTML

<!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>
<% if (web) { %>
<link rel="icon" href="./assets/favicon.ico">
<script src="settings.js"></script>
<% } %>
</head>
<body style="background-color: #000;">
<div id="root">
<script type="module" src="main.tsx"></script>
</div>
</body>
</html>