feat: launch.json

This commit is contained in:
2025-09-16 10:38:08 -04:00
parent 0fb82e59e0
commit 88f8b6919a

39
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,39 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
"version": "0.2.0",
"configurations": [
{
"type": "firefox",
"request": "launch",
"name": "Nuxt client",
"url": "http://localhost:3000",
"webRoot": "${workspaceFolder}/wp-content/themes/ccat",
"pathMappings": [
{
"url": "http://localhost:3000/_nuxt/",
"path": "${workspaceFolder}/wp-content/themes/ccat"
}
]
},
{
"name": "Nuxt server",
"type": "node",
"request": "launch",
"cwd": "${workspaceFolder}/wp-content/themes/ccat",
"runtimeExecutable": "pnpm",
"runtimeArgs": [
"dev"
]
}
],
"compounds": [
{
"name": "Nuxt fullstack",
"configurations": [
"Nuxt server",
"Nuxt client"
]
}
]
}