-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (33 loc) · 873 Bytes
/
index.html
File metadata and controls
34 lines (33 loc) · 873 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
30
31
32
33
34
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Buildless Hono 4 app</title>
<script type="importmap">
{
"imports": {
"hono/": "https://esm.sh/*hono@4.10.4&dev/"
}
}
</script>
<script type="module">
import {
availablePresets,
registerPreset,
} from "https://esm.sh/@babel/standalone@7.28.1";
registerPreset("jsx", {
presets: [[availablePresets["react"], { runtime: "automatic" }]],
});
</script>
<!-- `data-plugins=""` attribute is required for @babel/standalone@7.28.1 -->
<script
type="text/babel"
data-presets="jsx,typescript"
data-plugins=""
data-type="module"
src="./main.tsx"
></script>
</head>
<body></body>
</html>