We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4f1ab08 commit 571407fCopy full SHA for 571407f
examples/two-loaders/template.html
@@ -6,6 +6,6 @@
6
<meta name="viewport" content="width=device-width, initial-scale=1">
7
</head>
8
<body>
9
- {% include(require('html!./partial.html'), {}); %}
+ <%- include(require('html!./partial.html'), {}); %>
10
</body>
11
</html>
examples/two-loaders/webpack.config.js
@@ -15,7 +15,7 @@ module.exports = {
15
},
16
plugins: [
17
new HtmlWebpackPlugin({
18
- template: 'blueimp-tmpl!template.html'
+ template: 'template.html'
19
}),
20
new ExtractTextPlugin('styles.css')
21
]
0 commit comments