From cb99785c0c339177a92dd1b97c74da6f9e4eade7 Mon Sep 17 00:00:00 2001 From: Mateusz Kulpa Date: Wed, 5 Jul 2023 23:27:23 +0200 Subject: [PATCH] docs: add JetBrains IDEs debug configuration (#21965) --- docs/2.guide/3.going-further/9.debugging.md | 26 +++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/docs/2.guide/3.going-further/9.debugging.md b/docs/2.guide/3.going-further/9.debugging.md index 533f68396a..c21c233b4c 100644 --- a/docs/2.guide/3.going-further/9.debugging.md +++ b/docs/2.guide/3.going-further/9.debugging.md @@ -60,6 +60,32 @@ You may need to update the config below with a path to your web browser. For mor } ``` +### Example JetBrains IDEs Debug Configuration + +You can also debug your Nuxt app in JetBrains IDEs such as IntelliJ IDEA, WebStorm, or PhpStorm. + +1. Create a new file in your project root directory and name it `nuxt.run.xml`. + +2. Open the `nuxt.run.xml` file and paste the following debug configuration: + +```xml + + + + + + + + + + + + + + + +``` + ### Other IDEs If you have another IDE and would like to contribute sample configuration, feel free to [open a PR](https://github.com/nuxt/nuxt/edit/main/docs/2.guide/3.going-further/9.debugging.md)!