Files
ArmA-3-web-server/frontend/index.html
T
MrFastwind d54c46d2ad chore(frontend): remove unused zustand dependency and fix HTML title
- Remove zustand from package.json (was declared but never imported)
- Fix index.html title from 'arma3-frontend' to 'Arma 3 Server Manager'
2026-07-23 20:15:27 +02:00

14 lines
373 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Arma 3 Server Manager</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>