16 lines
631 B
HTML
16 lines
631 B
HTML
<!-- LAN / self-contained deploy shell: use with `vite --mode localnet` (e.g. build:local, start-local).
|
|
Minimal HTML, no third-party bootstraps that call the public internet (Crisp, etc.). -->
|
|
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/x-icon" id="favicon-link" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title id="title-id">Adaptive Dashboard</title>
|
|
<link rel="manifest" id="manifest-link" />
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script type="module" src="/src/app/main.tsx"></script>
|
|
</body>
|
|
</html>
|