Debugging VisualStudio代码调试程序

Debugging VisualStudio代码调试程序,debugging,visual-studio-code,thymeleaf,vscode-debugger,Debugging,Visual Studio Code,Thymeleaf,Vscode Debugger,我和thymeleaf有一个spring boot项目。我想调试thymeleafhtml本身。VS代码在java代码中获取断点,但我现在不知道如何配置它以在.html文件中获取断点 我的启动文件是这样的。该项目目前正在进行中https://localhost:8083. { "configurations": [ { "type": "java", "n

我和thymeleaf有一个spring boot项目。我想调试thymeleafhtml本身。VS代码在java代码中获取断点,但我现在不知道如何配置它以在.html文件中获取断点

我的启动文件是这样的。该项目目前正在进行中https://localhost:8083.

{
    "configurations": [
        {
            "type": "java",
            "name": "Application",
            "request": "launch",
            "cwd": "${workspaceFolder}",
            "console": "internalConsole",
            "mainClass": "com.demo.Application",
            "projectName": "Application",
            "args": ""
        },
        {
            "name": "Attach to Chrome",
            "url": "https://localhost:8083",
            "port": 8083,
            "request": "attach",
            "type": "pwa-chrome",
            "webRoot": "${workspaceFolder}"
        }
    ]
}
有什么想法吗?谢谢