0.0.1 • Published 6 years ago

thymeleaf-inject-webpack-plugin v0.0.1

Weekly downloads
12
License
MIT
Repository
github
Last release
6 years ago

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()
]