launch.json 489 B

1234567891011121314151617181920
  1. {
  2. "configurations": [
  3. {
  4. "type": "node-terminal",
  5. "name": "Dev",
  6. "request": "launch",
  7. "command": "yarn run dev",
  8. "cwd": "${workspaceFolder}"
  9. },
  10. {
  11. "type": "node-terminal",
  12. "name": "Prod",
  13. "request": "launch",
  14. "command": "yarn run dev",
  15. "cwd": "${workspaceFolder}",
  16. "envFile": "${workspaceFolder}/.env.production"
  17. }
  18. ]
  19. }