From eef30faf69b41f4a352a592ad65d097698d27303 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?TZ=20=7C=20=E5=A4=A9=E7=8C=AA?= Date: Wed, 30 Aug 2017 12:34:38 +0800 Subject: [PATCH] docs: adjust webstorm debug config (#1367) --- docs/source/zh-cn/core/development.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/zh-cn/core/development.md b/docs/source/zh-cn/core/development.md index 0207c2acf4..1f34ebce71 100644 --- a/docs/source/zh-cn/core/development.md +++ b/docs/source/zh-cn/core/development.md @@ -275,12 +275,12 @@ $ DEBUG=egg* npm run dev ```json { "scripts": { - "debug": "egg-bin dev $NODE_DEBUG_OPTION" + "debug": "egg-bin debug" } } ``` -> 目前 WebStorm 还不支持 `--inspect` 故不能使用 `egg-bin debug`,暂时使用 `egg-bin dev --debug` 的方式。 +`egg-bin` 会自动读取 WebStorm 调试模式下设置的环境变量 `$NODE_DEBUG_OPTION`。 使用 WebStorm 的 npm 调试启动即可: