-
Notifications
You must be signed in to change notification settings - Fork 10
/
index.html
29 lines (28 loc) · 1.01 KB
/
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
27
28
29
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>JSON Viewer</title>
<meta
name="description"
content="A simple visualization tool for JSON data. No mandatory structure, paste JSON and view immediately, multiple layouts and themes switch."
/>
<meta
name="description"
content="JSON Viewer,JSON数据的简单可视化工具。没有强制结构,粘贴JSON并立即查看,多种布局和主题切换!"
/>
<meta name="keyword" content="JSON,JSON Viewer,JSON可视化工具 " />
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate"
/>
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
</head>
<body>
<div id="app" class="wh-screen"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>