electron-vite-react/packages/renderer/index.html

18 lines
482 B
HTML
Raw Normal View History

2021-11-01 10:06:07 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/src/assets/favicon.svg" />
2021-11-01 10:06:07 +08:00
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2022-02-02 20:56:34 +08:00
<meta
2022-02-03 08:36:51 +08:00
http-equiv="Content-Security-Policy"
content="script-src 'self' 'unsafe-inline';"
/>
2021-11-01 10:06:07 +08:00
<title>Vite App</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>