html-webpack-plugin

安装:cnpm install html-webpack-plugin -D

使用:在webpack.config.js文件里面添加配置:

   const htmlWebpackPlugin = require('html-webpack-plugin')

   module.exports = {

      plugins: [

        new htmlWebpackPlugin({

          template: path.join(__dirname, './src/index.html'),

          filename: 'index.html'

        })

      ]

   }

作用:

  1. 在内存中生成index.html页面
  2. 自动在index.html页面引入bundle
上一篇:webpack学习02——Plungin的使用


下一篇:在vue中添加ico图标