-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathindex.dev.html
More file actions
34 lines (34 loc) · 1.07 KB
/
index.dev.html
File metadata and controls
34 lines (34 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<link rel="icon" href="/ipa/modern-ui/favicon.ico" />
<title>Identity Management</title>
<script type="module">
import { injectIntoGlobalHook } from "http://localhost:5173/ipa/modern-ui/@react-refresh";
injectIntoGlobalHook(window);
window.$RefreshReg$ = () => {};
window.$RefreshSig$ = () => (type) => type;
</script>
<script
type="module"
src="http://localhost:5173/ipa/modern-ui/@vite/client"
></script>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
<div id="root">
<p>
Make sure a development server is active by running
<code>npm run dev</code>, or run <code>npm run build</code> for a
production build.
</p>
</div>
<script
type="module"
src="http://localhost:5173/ipa/modern-ui/src/main.tsx"
></script>
</body>
</html>