-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html.ejs
26 lines (24 loc) · 1.18 KB
/
index.html.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="../../favicon.ico">
<link href="//fonts.googleapis.com/css?family=Open+Sans:400,300,100" rel="stylesheet" type="text/css">
<link rel="stylesheet" type="text/css" href="https://static.add123.com/cdn/add-style/latest/add-style.min.css">
<title><%= htmlWebpackPlugin.options.title %></title>
<script src="https://static.add123.com/cdn/babel/polyfill/6.26.0/polyfill.min.js"></script>
<% if (htmlWebpackPlugin.options.isProd) { %>
<script src="https://static.add123.com/cdn/react/15.6.1/react.min.js"></script>
<script src="https://static.add123.com/cdn/react/15.6.1/react-dom.min.js"></script>
<% } else { %>
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/15.6.1/react.js"></script>
<% } %>
<script src="https://static.add123.com/cdn/react/15.6.1/react-dom.min.js"></script>
<script src="https://static.add123.com/cdn/addnav/latest/addnav.js"></script>
</head>
<body>
<div id="app"></div>
</body>
</html>