From 88f8b6919a898884d8a8530f991291145367711b Mon Sep 17 00:00:00 2001 From: Pascal Martineau Date: Tue, 16 Sep 2025 10:38:08 -0400 Subject: [PATCH] feat: launch.json --- .vscode/launch.json | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..5e38066 --- /dev/null +++ b/.vscode/launch.json @@ -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" + ] + } + ] +} \ No newline at end of file