26 lines
758 B
Plaintext
26 lines
758 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="<%= htmlWebpackPlugin.options.lang %>">
|
|
<head>
|
|
<base href="/" />
|
|
<meta charset="utf-8">
|
|
<link rel="icon" type="image/png" href="/assets/icon.png" />
|
|
<meta name="viewport" content="width=device-width, user-scalable=no" />
|
|
<title>Persea</title>
|
|
<style>
|
|
html {
|
|
background-color: #212121;
|
|
color: #ffffff;
|
|
}
|
|
</style>
|
|
<%= htmlWebpackPlugin.tags.headTags %>
|
|
<% styleFiles.forEach(({content, href}) => { %>
|
|
<style data-href="<%= href %>"><%= content %></style>
|
|
<% }); %>
|
|
</head>
|
|
<body>
|
|
<div id="<%= htmlWebpackPlugin.options.appMountId %>"></div>
|
|
<script src="/flecks.config.js"></script>
|
|
<%= htmlWebpackPlugin.tags.bodyTags %>
|
|
</body>
|
|
</html>
|