-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
37 lines (35 loc) · 1.54 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
<!DOCTYPE html>
<html lang="zh">
<head>
<!-- META TAGS START -->
<meta charset="utf-8">
<meta name="renderer" content="webkit">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<!-- Chrome & Firefox OS -->
<meta name="theme-color" content="#69ceb0">
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#69ceb0">
<!-- META TAGS END -->
<title><%= htmlWebpackPlugin.options.title %></title>
<link rel="shortcut icon" href="/favicon.ico?v=1">
<!-- CONFIGURATION -->
<!-- Allow web app to be run in full-screen mode. -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="mobile-web-app-capable" content="yes">
<!-- Make the app title different than the page title. -->
<meta name="apple-mobile-web-app-title" content="<%= htmlWebpackPlugin.options.title %>">
<!-- Configure the status bar. -->
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<!-- Set the viewport. -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no, viewport-fit=cover">
<!-- Enable automatic phone number detection. -->
<meta name="format-detection" content="telephone=no, email=no">
<!-- JS Exception Report. -->
<script type="text/javascript" src="<%= htmlWebpackPlugin.options.publicPath %>static/js/exception.js"></script>
</head>
<body>
<!-- INITIAL_STATE -->
<!-- built files will be auto injected -->
<div id="app"></div>
</body>
</html>