forked from biggestcookie/vue-ts-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (27 loc) · 788 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<link
rel="icon"
type="image/svg+xml"
href="/src/assets/images/favicon.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vue App</title>
</head>
<body>
<noscript>
<strong>
Unfortunately, this site doesn't work without JavaScript! Please enable
it and refresh this page. If you're not sure how, please visit
<a href="https://www.enable-javascript.com/" target="_blank">
enable-javascript.com </a
>.
</strong>
</noscript>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>