pansoft-plrl/.vscode/launch.json

16 lines
430 B
JSON
Raw Normal View History

2024-06-22 20:55:31 +08:00
{
"$schema": "https://json.schemastore.org/launchsettings.json",
"version": "0.2.0",
2024-06-22 20:55:31 +08:00
"configurations": [
{
"type": "chrome", // chrome、edge
2024-07-14 23:10:48 +08:00
"name": "vben admin dev", // 调试的名称,可以自定义
2024-06-22 20:55:31 +08:00
"request": "launch",
"url": "http://localhost:5173",
"env": { "NODE_ENV": "development" },
"sourceMaps": true,
2024-06-22 20:55:31 +08:00
"webRoot": "${workspaceFolder}/apps/web-antd/src"
}
]
}