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