-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
42 lines (40 loc) · 1.21 KB
/
index.html
File metadata and controls
42 lines (40 loc) · 1.21 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/logo.svg" />
<link
rel="stylesheet"
href="//at.alicdn.com/t/font_2143783_iq6z4ey5vu.css"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- 在 public/index.html 的 <head> 标签中添加 -->
<!-- <script type="text/javascript">
window._AMapSecurityConfig = {
securityJsCode: "44eac56bdc3f91383417be81b7849750",
};
</script> -->
<!-- 在 index.html 中引入高德地图 API -->
<!-- <script src="https://webapi.amap.com/maps?v=1.4.15&key=70aa10ce5670862ae22a6ae40f524f39" type="text/javascript">
</script> -->
<!-- 全局 GA 配置 -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-3SDNWMRTX9"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
// 初始化 GA
gtag("config", "G-3SDNWMRTX9");
</script>
<title>MovieAI</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="./src/main.ts"></script>
</body>
</html>