Files
SkillMate/frontend/index-electron.html
2025-09-29 00:35:31 +02:00

21 Zeilen
527 B
HTML

<!DOCTYPE html>
<html lang="de">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/icon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>SkillMate - Skill-Management</title>
<script>
// Define process for Electron renderer
window.process = {
env: {},
platform: 'win32'
};
</script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>