-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
59 lines (57 loc) · 1.72 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!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" />
<title>《基于 React + Node 的视频点播网站》</title>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
/>
<link
rel="stylesheet"
href="https://fonts.googleapis.com/icon?family=Material+Icons"
/>
<link
rel="stylesheet"
href="https://g.alicdn.com/de/prismplayer/2.15.2/skins/default/aliplayer-min.css"
/>
<link
rel="stylesheet"
href="https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/skins/default/aliplayer-min.css"
/>
<!-- 播放器 SDK -->
<script
charset="utf-8"
type="text/javascript"
src="https://g.alicdn.com/de/prismplayer/2.15.2/aliplayer-h5-min.js"
></script>
<script src="https://g.alicdn.com/de/prismplayer/2.9.3/aliplayer-h5-min.js"></script>
<script
charset="utf-8"
type="text/javascript"
src="https://g.alicdn.com/apsara-media-box/imp-web-player/2.16.3/aliplayer-min.js"
></script>
<!-- 上传 SDK -->
<script
defer
type="module"
src="/public/aliyun-upload-sdk-1.5.6/lib/es6-promise.min.js"
></script>
<script
defer
type="module"
src="public/aliyun-upload-sdk-1.5.6/lib/aliyun-oss-sdk-6.17.1.min.js"
></script>
<script
defer
type="module"
src="/public/aliyun-upload-sdk-1.5.6/aliyun-upload-sdk-1.5.6.min.js"
></script>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>