Move VSCode configuration to workspace root

This commit is contained in:
beatz174-bit
2025-11-21 15:49:45 +10:00
parent 16c0ee8ac8
commit f8527573fb
3 changed files with 7 additions and 6 deletions
+21
View File
@@ -0,0 +1,21 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch Vite Dev Server",
"type": "pwa-chrome",
"request": "launch",
"url": "http://localhost:5173/",
"webRoot": "${workspaceFolder}/app/src",
"preLaunchTask": "npm: dev server"
},
{
"name": "Launch Preview (Test) Server",
"type": "pwa-chrome",
"request": "launch",
"url": "http://localhost:4173/",
"webRoot": "${workspaceFolder}/app/src",
"preLaunchTask": "npm: preview server"
}
]
}