Answers for "html-webpack-plugin install"

0

html-webpack-plugin npm

  npm i --save-dev html-webpack-plugin
Posted by: Guest on April-07-2020
2

htmlwebpackplugin

//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",
    })]
};
Posted by: Guest on October-11-2020

Code answers related to "html-webpack-plugin install"

Browse Popular Code Answers by Language