18 lines
596 B
HTML
18 lines
596 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
<meta name="viewport" content="width=device-width,initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="<%= webpackConfig.output.publicPath %>hammond.png" />
|
|
<link rel="apple-touch-icon" href="<%= webpackConfig.output.publicPath %>touch-icon.png" />
|
|
<title><%= webpackConfig.name %></title>
|
|
</head>
|
|
<body>
|
|
<!-- This is where our app will be mounted. -->
|
|
<div id="app"></div>
|
|
|
|
<!-- Built files will be auto injected here. -->
|
|
</body>
|
|
</html>
|