我正在尝试使用 VSC 调试 Vue 应用程序。我有以下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": [
{
"name": "Attach to Chrome",
"port": 9222,
"request": "attach",
"type": "pwa-chrome",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides":{
"webpack:///src/*": "${webRoot}/*"
}
},
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}/src",
"breakOnLoad": true,
"sourceMapPathOverrides":{
"webpack:///src/*": "${webRoot}/*"
}
}
]
}
我还在项目的根目录下添加了下面的 vue.config.js 文件
module.exports = {
configureWebpack: {
devtool: 'source-map'
},
devServer: {
port: 8080
}
}
要调试 Vue 应用程序,我在终端使用“npm run serve”,单击左侧菜单中的“运行和调试”选项,然后选择我的调试配置,标题为“针对 localhost 启动 Chrome”。
我无法绑定任何断点,即断点是代码中未填充的灰色圆圈。
不知道接下来要尝试什么,在线搜索中没有出现关于可能是什么问题的内容。