-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
18 lines (17 loc) · 828 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!doctype html>
<html lang="en" manifest="manifest.appcache">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<link rel="icon" sizes="124x124" href="favicon.png">
<link rel="stylesheet" href="css/main.css">
<title>Console Output</title>
</head>
<body class="theme-light">
<!-- The app hooks into this div -->
<div id="app"></div>
<!-- Due to the way webpack works, a lot of magic happens in this file. HtmlWebpackPlugin automatically includes all assets (e.g. bundle.js, main.css) with the correct HTML tags, which is why they are missing in this HTML file. Check out webpackconfig.js if you want to know more. -->
</body>
</html>