webpack.config.js 添加 source map
+ devtool: ‘eval-cheap-module-source-map‘, // 或者 ‘eval-source-map‘
按 F5 选择 chrome,会生成 .vscode/launch.json 修改如下
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}",
"sourceMaps": true,
"sourceMapPathOverrides": {
"webpack:///./*": "${webRoot}/*",
"webpack:///src/*": "${webRoot}/*",
"webpack:///*": "*",
"webpack:///./~/*": "${webRoot}/node_modules/*",
"meteor://??app/*": "${webRoot}/*"
}
}
]
}
然后就可以 按 F5 调试项目了。
原文:https://www.cnblogs.com/whosmeya/p/13028551.html