摘要: webpack对于PWA的打包配置 typescript的打包配置 WebpackDevServer 实现请求转发 webpack-dev-server解决单页面应用路由问题 EsLint 在 Webpack 中的配置 阅读全文
posted @ 2020-11-25 15:46 磊~~ 阅读(64) 评论(0) 推荐(0) 编辑
摘要: webpack默认打包之后的代码形式是这样的(假设我导出 module.exports = 'hello world' ) (function () { return 'hello world' })() 注意:代码是一个自执行函数,外界想获取函数里面的返回值怎么办(也就是模块的导出结果 hello 阅读全文
posted @ 2020-11-25 15:43 磊~~ 阅读(93) 评论(0) 推荐(0) 编辑
摘要: Tree Shaking Develoment 和 Production 模式的区分打包 方式一:不同模式用不同配置文件打包 1.安装webpack-merge合并多个配置文件 npm install webpack-merge -d 2.webpack-common.js做公共的配置 const 阅读全文
posted @ 2020-11-25 09:41 磊~~ 阅读(216) 评论(0) 推荐(0) 编辑