sourcemap他是一个映射关系 在devtool配置
source-map
- inline-source-map 在main.js后边追加base64格式的代码
- cheap-source-map 只要行不要列、只管业务代码不管第三方
- cheap-module-source-map 加上第三方
- eval-source-map 性能快、不太全面
常用:cheap-module-eval-source-map
线上:cheap-module-source-map
2023-11-08 18:47:16