码迷,mamicode.com
首页 > Web开发 > 详细

html-webpack-plugin

时间:2020-03-15 13:04:25      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:内存   html   plugin   new   export   template   src   path   webp   

安装: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

html-webpack-plugin

标签:内存   html   plugin   new   export   template   src   path   webp   

原文地址:https://www.cnblogs.com/sunshinexiu/p/12496948.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!