forked from PatrickJS/angular-webpack-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (31 loc) · 966 Bytes
/
Copy pathindex.html
File metadata and controls
43 lines (31 loc) · 966 Bytes
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
43
<!DOCTYPE html>
<html lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title><%= htmlWebpackPlugin.options.meta.title %></title>
<meta name="description" content="<%= htmlWebpackPlugin.options.meta.title %>">
<% if (webpackConfig.htmlElements.headTags) { %>
<!-- Configured Head Tags -->
<%= webpackConfig.htmlElements.headTags %>
<% } %>
<!-- base url -->
<base href="/">
</head>
<body>
<my-app>
Loading...
</my-app>
<% if (htmlWebpackPlugin.options.isWebpackDevServer) { %>
<!-- Webpack Dev Server reload -->
<script src="/webpack-dev-server.js"></script>
<% } %>
<% if (htmlWebpackPlugin.options.isDev) { %>
<!-- Webpack Dev Server reload -->
<script src="/polyfills.dll.js"></script>
<script src="/vendors.dll.js"></script>
<script src="/rxjs.dll.js"></script>
<% } %>
</body>
</html>