插件使用
将打包后的js自动引入到html文件中
安装所需要的依赖
1npm install html-webpack-plugin --save-dev在webpack.config.js中添加一行
1let htmlWebpackPlugin = require('html-webpack-plugin');在根目录中新建一个html文件,名字自取,这里叫template.html
在webpack.config.js中添加配置项
123456plugins: [new HtmlWebpackPlugin({template:'./src/template.html',//模板filename:'index.html'//输出的文件名})]
自动打包
不用每次都手动运行脚本
安装所需要的依赖
1npm install webpack-dev-server --save-devpackage.json中scripts配置项中新建一项
1"dev":"webpack-dev-server"运行脚本npm run dev