diff --git a/examples/two-loaders/template.html b/examples/two-loaders/template.html index 16801a0..ef62820 100644 --- a/examples/two-loaders/template.html +++ b/examples/two-loaders/template.html @@ -6,6 +6,6 @@ - {% include(require('html!./partial.html'), {}); %} + <%- include(require('html!./partial.html'), {}); %> \ No newline at end of file diff --git a/examples/two-loaders/webpack.config.js b/examples/two-loaders/webpack.config.js index d56445b..7df9d54 100755 --- a/examples/two-loaders/webpack.config.js +++ b/examples/two-loaders/webpack.config.js @@ -15,7 +15,7 @@ module.exports = { }, plugins: [ new HtmlWebpackPlugin({ - template: 'blueimp-tmpl!template.html' + template: 'template.html' }), new ExtractTextPlugin('styles.css') ]