From 3159bb4f65b2384a9b2bd2b355a196c49b76d69f Mon Sep 17 00:00:00 2001 From: David Marr <44376+marr@users.noreply.github.com> Date: Mon, 31 Jul 2023 10:40:50 -0400 Subject: [PATCH] docs: add some more debugging tips (#22415) --- docs/2.guide/3.going-further/9.debugging.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/docs/2.guide/3.going-further/9.debugging.md b/docs/2.guide/3.going-further/9.debugging.md index c21c233b4c..8fc686a4fd 100644 --- a/docs/2.guide/3.going-further/9.debugging.md +++ b/docs/2.guide/3.going-further/9.debugging.md @@ -42,6 +42,7 @@ You may need to update the config below with a path to your web browser. For mor "type": "node", "request": "launch", "name": "server: nuxt", + "outputCapture": "std", "program": "${workspaceFolder}/node_modules/nuxi/bin/nuxi.mjs", "args": [ "dev" @@ -60,6 +61,12 @@ You may need to update the config below with a path to your web browser. For mor } ``` +If you prefer your usual browser extensions, add this to the _chrome_ configuration above: + +```json5 + "userDataDir": false, +``` + ### Example JetBrains IDEs Debug Configuration You can also debug your Nuxt app in JetBrains IDEs such as IntelliJ IDEA, WebStorm, or PhpStorm.