launch.json 381 B

123456789101112131415
  1. {
  2. "$schema": "https://json.schemastore.org/launchsettings.json",
  3. "version": "0.2.0",
  4. "configurations": [
  5. {
  6. "type": "chrome",
  7. "name": "vben admin antd dev",
  8. "request": "launch",
  9. "url": "http://localhost:5555",
  10. "env": { "NODE_ENV": "development" },
  11. "sourceMaps": true,
  12. "webRoot": "${workspaceFolder}/apps/web-antd/src"
  13. }
  14. ]
  15. }