| 12345678910111213141516 |
- {
- "$schema": "https://json.schemastore.org/launchsettings.json",
- "version": "0.2.0",
- "configurations": [
- {
- "type": "chrome",
- "name": "针对 localhost 启动 Chrome",
- "request": "launch",
- "url": "http://localhost:9000",
- "env": { "NODE_ENV": "development" },
- "sourceMaps": true,
- "webRoot": "${workspaceFolder}"
- }
- ]
- }
|