请教一下调试配置文件如何写

Tsssss · 昨天 11:20 · 206 次点击

项目是使用 npx degit dcloudio/uni-preset-vue#vite-ts vue-uniapp-template 创建的,在 vscode 中配置了 launch.json 文件进行 h5 页面调试,但是断点一直打不上

{
    "version": "0.2.0",
    "configurations": [
        {
            "type": "chrome",
            "request": "launch",
            "name": "Launch Chrome against localhost",
            "url": "http://localhost:5173",
            "webRoot": "${workspaceFolder}",
        }
    ]
}

在 script 中打的断点都是灰的,请问如何配置?

举报· 206 次点击
登录 注册 站外分享
1 条回复  
Akuta 小成 昨天 13:41
网页项目在代码里写 debugger 或者打开 devtools 打断点就行
返回顶部