Rpp
0
Q:

html webpack plugin

npm install html-webpack-plugin --save-dev
2
//installation
npm install --save-dev html-webpack-plugin

//configuration
var HtmlWebpackPlugin = require('html-webpack-plugin');
var path = require('path');

module.exports = {
  entry: 'index.js',
  output: {
    path: path.resolve(__dirname, './dist'),
    filename: 'index_bundle.js'
  },
  plugins: [new HtmlWebpackPlugin({
      template: "./index.html",
    })]
};
0
  npm i --save-dev html-webpack-plugin
0

New to Communities?

Join the community