feat: add launch configuration for Chrome debugging

This commit is contained in:
monoid 2025-08-15 21:44:45 +09:00
parent 8e08327dd9
commit bd536f2ea5

15
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,15 @@
{
// IntelliSense .
// .
// https://go.microsoft.com/fwlink/?linkid=830387() .
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "localhost에 대해 Chrome 시작",
"url": "http://localhost:5173",
"webRoot": "${workspaceFolder}"
}
]
}