thymeleaf-inject-webpack-plugin
v0.0.1
Published
Adds automatically thymeleaf attribute to your injected resources
Downloads
10
Maintainers
Readme
Thymeleaf Inject Webpack Plugin
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
Installation
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
Basic Usage
Load the plugin
const ThymeleafInjectWebpackPlugin = require('thymeleaf-inject-webpack-plugin');
and add it to your webpack config as follows:
plugins: [
new HtmlWebpackPlugin(),
new ThymeleafInjectWebpackPlugin()
]