Skip to content

Commit 7d3ad3f

Browse files
authored
[DOC] Fix deprecated on node debug
Fix this: `(node:10790) [DEP0062] DeprecationWarning: `node --inspect --debug-brk` is deprecated. Please use `node --inspect-brk` instead.`
1 parent 95fff79 commit 7d3ad3f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -569,7 +569,7 @@ First let's start up the FastBoot server with Node in debug mode. One thing
569569
about debug mode: it makes everything much slower.
570570

571571
```sh
572-
node --debug-brk --inspect ./node_modules/.bin/ember serve
572+
node --inspect-brk ./node_modules/.bin/ember serve
573573
```
574574

575575
This starts the FastBoot server in debug mode. Note that the `--debug-brk` flag will cause your

0 commit comments

Comments
 (0)