-
Notifications
You must be signed in to change notification settings - Fork 73
/
index.html
26 lines (26 loc) · 918 Bytes
/
index.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/doc-tree-icon-dark.png" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="theme-color" content="#000000" />
<meta
name="description"
content="React + Konva / image editor / like Figma or Canva"
/>
<link rel="apple-touch-icon" href="/doc-tree-icon-dark.png" />
<link rel="manifest" href="/manifest.json" />
<title>React Image Editor</title>
<script
src="https://cdnjs.cloudflare.com/ajax/libs/holder/2.9.8/holder.min.js"
integrity="sha512-O6R6IBONpEcZVYJAmSC+20vdsM07uFuGjFf0n/Zthm8sOFW+lAq/OK1WOL8vk93GBDxtMIy6ocbj6lduyeLuqQ=="
crossorigin="anonymous"
referrerpolicy="no-referrer"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>