Files
cultureat-bak/.vscode/launch.json
2025-09-16 10:38:08 -04:00

39 lines
895 B
JSON

{
// 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"
]
}
]
}