-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (26 loc) · 991 Bytes
/
index.html
File metadata and controls
30 lines (26 loc) · 991 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
<link vite-ignore id="flexlayout-stylesheet" rel="stylesheet"
href="./node_modules/flexlayout-react/style/light.css" />
<link vite-ignore id="gridstack-stylesheet" rel="stylesheet" href="./node_modules/gridstack/dist/gridstack.css" />
<!-- <meta name="viewport" content="width=device-width, initial-scale=1.0" /> -->
<title>XRP Web App</title>
<!-- Import map for external plugin Blockly imports -->
<script type="importmap">
{
"imports": {
"blockly/core": "./assets/blockly-core.js",
"blockly/python": "./assets/blockly-python.js"
}
}
</script>
<meta http-equiv="Cross-Origin-Opener-Policy" content="same-origin-allow-popups">
</head>
<body class="debug-screens">
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>