UPD: Migrate to electron-vite

Delete your node_modules. Use pnpm from now on.
This commit is contained in:
Robert Kossessa
2024-03-01 19:45:18 +01:00
parent 057b8a5fc7
commit 7b67516125
392 changed files with 4454 additions and 21172 deletions

22
src/renderer/index.html Normal file
View File

@@ -0,0 +1,22 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<title>ZERO/ONE Configuration Suite</title>
<!-- https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP -->
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data:"
/>
<style>
html {
background: black;
}
</style>
</head>
<body class="dark bg-background">
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>