摘要: // 安装 模板解析 "html-webpack-plugin": "4.0.0-alpha", npm install html-webpack-plugin -D "css-loader": "^3.6.0", "style-loader": "^2.0.0", "less": "^3.9.0" 阅读全文
posted @ 2021-03-12 17:49 13522679763-任国强 阅读(573) 评论(0) 推荐(0)
摘要: // 使用数组 plugins:[ new HtmlWebpackPlugin({ // 自己定义的html 模板 template:'./src/index.html' , // 输出后的文件名 filename:'index.[hash].html', // filename:'index.ht 阅读全文
posted @ 2021-03-12 15:59 13522679763-任国强 阅读(47) 评论(0) 推荐(0)
摘要: webpack 的安装为了防止全局安装出现的版本冲突 一般都把webpack安装在 本地项目中 npm init -y npm install webpack@4 webpack-cli@3 --save-dev /* 配置自定义打包规则 1 所有规则 都写在 module.exports = {  阅读全文
posted @ 2021-03-12 11:23 13522679763-任国强 阅读(60) 评论(0) 推荐(0)