Created
March 2, 2020 11:18
-
-
Save j2is/60e0f9a8451e5d9c244faa02e821d4ad to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// Use IntelliSense to learn about possible attributes. | |
// Hover to view descriptions of existing attributes. | |
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | |
"version": "0.2.0", | |
"configurations": [ | |
{ | |
"type": "chrome", | |
"request": "launch", | |
"name": "Next: Chrome", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}", | |
"sourceMapPathOverrides": { | |
"webpack:///*": "${webRoot}/*" | |
} | |
}, | |
{ | |
"type": "node", | |
"request": "launch", | |
"name": "Next: Node", | |
"runtimeExecutable": "${workspaceFolder}/node_modules/next/dist/bin/next", | |
"env": { | |
"NODE_OPTIONS": "--inspect-brk" | |
}, | |
"sourceMapPathOverrides": { | |
"webpack:///*": "${workspaceFolder}/*" | |
}, | |
"port": 9229, | |
"console": "internalConsole" | |
} | |
], | |
"compounds": [ | |
{ | |
"name": "Next: Full", | |
"configurations": ["Next: Node", "Next: Chrome"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment