changed html in vite

This commit is contained in:
Carter 2026-01-19 11:31:18 -06:00
parent 551d9d0810
commit 98f688673b
2 changed files with 1 additions and 21 deletions

View file

@ -1,20 +0,0 @@
<!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>
<script>
window.CRISP_RUNTIME_CONFIG = {
session_merge: true
};
</script>
<script type="text/javascript">window.$crisp=[];window.CRISP_WEBSITE_ID="80170383-b426-43c0-8f66-8e20a05bcdce";(function(){d=document;s=d.createElement("script");s.src="https://client.crisp.chat/l.js";s.async=1;d.getElementsByTagName("head")[0].appendChild(s);})();</script>
<body>
<div id="root"></div>
<script type="module" src="/src/app/main.tsx"></script>
</body>
</html>

View file

@ -53,7 +53,7 @@ export default defineConfig({
target: 'esnext',
rollupOptions: {
input: {
main: path.resolve(__dirname, 'indexV2.html')
main: path.resolve(__dirname, 'index.html')
}
}
},