-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (34 loc) · 1.15 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
30
31
32
33
34
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
http-equiv="Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'unsafe-inline'; img-src 'self' data: w3.org; style-src-elem 'self' 'unsafe-inline';"
/>
<meta
http-equiv="X-Content-Security-Policy"
content="default-src 'self'; script-src 'self'; style-src 'unsafe-inline'; img-src 'self' data: w3.org; style-src-elem 'self' 'unsafe-inline';"
/>
<title>A very dummy video converter based on FFmpeg</title>
<style>
::-webkit-scrollbar {
width: 6px;
height: 6px;
}
::-webkit-scrollbar-track {
background: #f1f1f111;
}
::-webkit-scrollbar-thumb {
background: #d3d3d3;
border-radius: 10px;
}
</style>
</head>
<body class="bg-slate-100 h-screen overflow-y-auto">
<div id="root" class="h-full flex flex-col"></div>
<script type="module" src="/src/interface/main.tsx"></script>
</body>
</html>