15 lines
568 B
HTML
15 lines
568 B
HTML
<!-- Serves as the app shell when Vite is run with --mode nocrisp (e.g. npm run build:local, start-local). No Crisp inline scripts. -->
|
|
<!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>
|