This is an extension plugin for the webpack plugin html-webpack-plugin.
It adds automatically thymeleaf to all of your injected resources before generate output html
You must be running webpack on node 0.12.x or higher
Install the plugin with npm:
$ npm install --save-dev nkb84/thymeleaf-inject-webpack-plugin
Install the plugin with yarn:
$ yarn add --dev nkb84/thymeleaf-inject-webpack-plugin
Load the plugin
const ThymeleafInjectWebpackPlugin = require('thymeleaf-inject-webpack-plugin');
and add it to your webpack config as follows:
plugins: [
new HtmlWebpackPlugin(),
new ThymeleafInjectWebpackPlugin()
]