launch.json 204 B

123456789101112
  1. {
  2. "version": "0.0.1",
  3. "configurations": [
  4. {
  5. "name": "frontend",
  6. "runtimeExecutable": "npm",
  7. "runtimeArgs": ["run", "dev"],
  8. "port": 3000,
  9. "autoPort": false
  10. }
  11. ]
  12. }