-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (28 loc) · 1019 Bytes
/
index.html
File metadata and controls
29 lines (28 loc) · 1019 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>LocalShip</title>
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<script type="importmap">
{
"imports": {
"@babel/standalone": "https://esm.sh/@babel/standalone@^7.28.6",
"react/": "https://esm.sh/react@^19.2.4/",
"react": "https://esm.sh/react@^19.2.4",
"@vitejs/plugin-react": "https://esm.sh/@vitejs/plugin-react@^5.1.2",
"vite": "https://esm.sh/vite@^7.3.1",
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
"jszip": "https://esm.sh/jszip@^3.10.1",
"file-saver": "https://esm.sh/file-saver@^2.0.5"
}
}
</script>
<link rel="stylesheet" href="/index.css">
</head>
<body class="bg-slate-50 dark:bg-[#0a192f] text-slate-800 dark:text-slate-200 antialiased overflow-hidden transition-colors duration-300">
<div id="root"></div>
<script type="module" src="/index.tsx"></script>
</body>
</html>