mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
28 lines
590 B
JSON
28 lines
590 B
JSON
|
{
|
||
|
"version": "0.2.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Launch Chrome",
|
||
|
"request": "launch",
|
||
|
"type": "chrome",
|
||
|
"url": "http://localhost:3000",
|
||
|
"webRoot": "${workspaceFolder}"
|
||
|
},
|
||
|
{
|
||
|
"name": "Launch Edge",
|
||
|
"request": "launch",
|
||
|
"type": "msedge",
|
||
|
"url": "http://localhost:3000",
|
||
|
"webRoot": "${workspaceFolder}"
|
||
|
},
|
||
|
{
|
||
|
"name": "Run and debug",
|
||
|
"type": "node",
|
||
|
"request": "launch",
|
||
|
"cwd": "${workspaceFolder}",
|
||
|
"runtimeExecutable": "pnpm",
|
||
|
"runtimeArgs": ["run", "dev"]
|
||
|
}
|
||
|
]
|
||
|
}
|