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