diff --git a/.vscode/launch.json b/.vscode/launch.json index 147923c..f5af679 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -3,19 +3,17 @@ "configurations": [ { "name": "Launch Vite Dev Server", - "type": "pwa-chrome", + "type": "node-terminal", "request": "launch", - "url": "http://localhost:5173/", - "webRoot": "${workspaceFolder}/src", - "preLaunchTask": "npm: dev server" + "command": "npm run dev", + "cwd": "${workspaceFolder}" }, { "name": "Launch Preview (Test) Server", - "type": "pwa-chrome", + "type": "node-terminal", "request": "launch", - "url": "http://localhost:4173/", - "webRoot": "${workspaceFolder}/src", - "preLaunchTask": "npm: preview server" + "command": "npm run preview", + "cwd": "${workspaceFolder}" } ] }