Files
crm_uiapp/.vscode/launch.json
2026-04-14 15:06:26 +08:00

16 lines
374 B
JSON

{
"$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}"
}
]
}