Merge pull request #5 from beatz174-bit/codex/remove-chrome-from-launch-items

Update VS Code launch configs for server tasks
This commit is contained in:
beatz174-bit
2025-11-21 16:15:52 +10:00
committed by GitHub
+6 -8
View File
@@ -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}"
}
]
}