25 lines
724 B
HTML
25 lines
724 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<!-- ToDo: only add in DEV mode -->
|
||
|
<script type="module" src="/@vite/client"></script>
|
||
|
<script type="module">
|
||
|
import RefreshRuntime from "/@react-refresh";
|
||
|
RefreshRuntime.injectIntoGlobalHook(window);
|
||
|
window.$RefreshReg$ = () => {};
|
||
|
window.$RefreshSig$ = () => (type) => type;
|
||
|
window.__vite_plugin_react_preamble_installed__ = true;
|
||
|
</script>
|
||
|
|
||
|
<meta charset="UTF-8" />
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
|
<title>Vite App</title>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="root">
|
||
|
<!-- __REACT_SSR_APP__ -->
|
||
|
</div>
|
||
|
<script type="module" src="/src/main.jsx"></script>
|
||
|
</body>
|
||
|
</html>
|