-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (22 loc) · 953 Bytes
/
Copy pathindex.html
File metadata and controls
22 lines (22 loc) · 953 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>便签</title>
<meta http-equiv="Content-Security-Policy" content="default-src 'self' 'unsafe-inline' 'unsafe-eval' data: blob: ipc: http://ipc.localhost https://tauri.localhost; script-src 'self' 'unsafe-inline' 'unsafe-eval'; connect-src 'self' ipc: http://ipc.localhost https://tauri.localhost;">
<style>
html, body { margin: 0; padding: 0; height: 100%; background: #f5f5f7; }
#app { height: 100%; }
#app-loading {
display: flex; align-items: center; justify-content: center;
height: 100vh; color: #999; font-family: -apple-system, sans-serif;
font-size: 14px;
}
</style>
</head>
<body>
<div id="app"><div id="app-loading">Loading...</div></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>