pansoft-plrl/.vscode/launch.json

44 lines
1.1 KiB
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": [
2024-09-14 19:02:39 +08:00
2024-06-22 20:55:31 +08:00
{
"type": "chrome",
"name": "vben admin playground dev",
2024-06-22 20:55:31 +08:00
"request": "launch",
"url": "http://localhost:5555",
"env": { "NODE_ENV": "development" },
"sourceMaps": true,
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"name": "vben admin antd dev",
"request": "launch",
"url": "http://localhost:5666",
"env": { "NODE_ENV": "development" },
"sourceMaps": true,
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"name": "vben admin ele dev",
"request": "launch",
"url": "http://localhost:5777",
"env": { "NODE_ENV": "development" },
"sourceMaps": true,
"webRoot": "${workspaceFolder}"
},
{
"type": "chrome",
"name": "vben admin naive dev",
"request": "launch",
"url": "http://localhost:5888",
"env": { "NODE_ENV": "development" },
"sourceMaps": true,
"webRoot": "${workspaceFolder}"
2024-06-22 20:55:31 +08:00
}
]
}