25 lines
655 B
JSON
25 lines
655 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Vite: 启动开发服务器",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeExecutable": "npm",
|
|
"runtimeArgs": [
|
|
"run",
|
|
"dev"
|
|
],
|
|
"cwd": "${workspaceFolder}/src",
|
|
"console": "integratedTerminal"
|
|
},
|
|
{
|
|
"name": "React: Chrome 调试",
|
|
"type": "chrome",
|
|
"request": "launch",
|
|
"url": "http://localhost:5173",
|
|
"webRoot": "${workspaceFolder}/src",
|
|
"sourceMaps": true
|
|
}
|
|
]
|
|
} |