16 lines
631 B
HTML
16 lines
631 B
HTML
<!DOCTYPE html>
|
|
<html{% if(o.htmlWebpackPlugin.assets.manifest) { %} manifest="{%= o.htmlWebpackPlugin.assets.manifest + '?' + o.hash %}"{% } %}>
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{%=o.htmlWebpackPlugin.options.title || 'Webpack App'%}</title>
|
|
{% for (var css in o.htmlWebpackPlugin.assets.css) { %}
|
|
<link href="{%=o.htmlWebpackPlugin.assets.css[css] + '?' + o.hash %}" rel="stylesheet">
|
|
{% } %}
|
|
</head>
|
|
<body>
|
|
{% for (var chunk in o.htmlWebpackPlugin.assets.chunks) { %}
|
|
<script src="{%=o.htmlWebpackPlugin.assets.chunks[chunk].entry + '?' + o.hash %}"></script>
|
|
{% } %}
|
|
</body>
|
|
</html>
|