摘要: 增加插件 在 hand-webpck 文件夹下引入插件 less 在src 下新增 index.less index.less @nice-blue: #5b83ad; body { background: @nice-blue; } 在 webpack.config.js 配置使用的模块 let 阅读全文
posted @ 2020-03-21 23:06 1点 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 编写 emitFile 方法 emitFile() { // 打包输出的路径 let main = path.join(this.config.output.path, this.config.output.filename) console.log(main, 'test') this.asset 阅读全文
posted @ 2020-03-21 22:45 1点 阅读(174) 评论(0) 推荐(0) 编辑
摘要: 在m-pack 通过path 引入 webpack.config.js let config = require(path.resolve('webpack.config.js')); console.log(config) 输出: { mode: 'development', entry: './ 阅读全文
posted @ 2020-03-21 21:51 1点 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 创建一个文件夹 这个文件夹 用来使用 webpack 的 npm init - y 初始化文件 引入 webpack webapck-cli 如: yarn add webpack webapck-cli -D 新建src目录 mkdir src 创建 index.js a.js b.js inde 阅读全文
posted @ 2020-03-21 18:02 1点 阅读(219) 评论(0) 推荐(0) 编辑