[DevExperience] Add default VSCode launch.json (#2348)

This commit is contained in:
Chenlei Hu
2025-01-25 12:53:36 -05:00
committed by GitHub
parent e992bd6571
commit 44321e4692
2 changed files with 17 additions and 0 deletions

1
.gitignore vendored
View File

@@ -18,6 +18,7 @@ dist-ssr
!.vscode/extensions.json
!.vscode/tailwind.json
!.vscode/settings.json.default
!.vscode/launch.json.default
.idea
.DS_Store
*.suo

16
.vscode/launch.json.default vendored Normal file
View File

@@ -0,0 +1,16 @@
{
// 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 on frontend dev",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}/src",
"sourceMaps": true,
}
]
}