Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. {
  2. "version": "0.2.0",
  3. "configurations": [
  4. {
  5. "name": "Gatsby develop",
  6. "type": "node",
  7. "request": "launch",
  8. "protocol": "inspector",
  9. "program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
  10. "args": ["develop"],
  11. "stopOnEntry": false,
  12. "runtimeArgs": ["--nolazy"],
  13. "sourceMaps": false
  14. },
  15. {
  16. "name": "Gatsby build",
  17. "type": "node",
  18. "request": "launch",
  19. "protocol": "inspector",
  20. "program": "${workspaceRoot}/node_modules/gatsby/dist/bin/gatsby",
  21. "args": ["build"],
  22. "stopOnEntry": false,
  23. "runtimeArgs": ["--nolazy"],
  24. "sourceMaps": false
  25. }
  26. ]
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement