Skip to content

Commit 571407f

Browse files
author
Jan Nicklas
committed
Fix demos
1 parent 4f1ab08 commit 571407f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/two-loaders/template.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@
66
<meta name="viewport" content="width=device-width, initial-scale=1">
77
</head>
88
<body>
9-
{% include(require('html!./partial.html'), {}); %}
9+
<%- include(require('html!./partial.html'), {}); %>
1010
</body>
1111
</html>

examples/two-loaders/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ module.exports = {
1515
},
1616
plugins: [
1717
new HtmlWebpackPlugin({
18-
template: 'blueimp-tmpl!template.html'
18+
template: 'template.html'
1919
}),
2020
new ExtractTextPlugin('styles.css')
2121
]

0 commit comments

Comments
 (0)