commit | author | age
|
a5a648
|
1 |
<!DOCTYPE html> |
W |
2 |
<html lang="en" dir="ltr"> |
|
3 |
|
|
4 |
<head> |
|
5 |
<meta charset="UTF-8"> |
|
6 |
<title>Ionic App</title> |
|
7 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"> |
|
8 |
<meta name="format-detection" content="telephone=no"> |
|
9 |
<meta name="msapplication-tap-highlight" content="no"> |
|
10 |
|
|
11 |
<link rel="icon" type="image/x-icon" href="assets/icon/favicon.ico"> |
|
12 |
<link rel="manifest" href="manifest.json"> |
|
13 |
<meta name="theme-color" content="#4e8ef7"> |
|
14 |
|
|
15 |
<!-- cordova.js required for cordova apps --> |
|
16 |
<script src="cordova.js"></script> |
|
17 |
|
|
18 |
<!-- un-comment this code to enable service worker |
|
19 |
<script> |
|
20 |
if ('serviceWorker' in navigator) { |
|
21 |
navigator.serviceWorker.register('service-worker.js') |
|
22 |
.then(() => console.log('service worker installed')) |
|
23 |
.catch(err => console.error('Error', err)); |
|
24 |
} |
|
25 |
</script>--> |
|
26 |
|
|
27 |
<link href="build/main.css" rel="stylesheet"> |
|
28 |
|
|
29 |
</head> |
|
30 |
|
|
31 |
<body> |
|
32 |
|
|
33 |
<!-- Ionic's root component and where the app will load --> |
|
34 |
<ion-app></ion-app> |
|
35 |
|
|
36 |
<script> |
|
37 |
var ua = navigator.userAgent.toLowerCase(); |
|
38 |
if (/micromessenger/.test(ua)) { |
|
39 |
document.body.classList.add('wechat'); |
|
40 |
} |
|
41 |
</script> |
|
42 |
|
|
43 |
<!-- The polyfills js is generated during the build process --> |
|
44 |
<script src="build/polyfills.js"></script> |
|
45 |
|
|
46 |
<!-- The vendor js is generated during the build process |
|
47 |
It contains all of the dependencies in node_modules --> |
|
48 |
<script src="build/vendor.js"></script> |
|
49 |
|
|
50 |
<!-- The main bundle js is generated during the build process --> |
|
51 |
<script src="build/main.js"></script> |
|
52 |
|
|
53 |
</body> |
|
54 |
|
|
55 |
</html> |