mirror of
https://github.com/doolijb/serene-pub.git
synced 2026-04-28 03:20:07 +00:00
18 lines
389 B
JSON
18 lines
389 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Vite dev server",
|
|
"program": "${workspaceFolder}/node_modules/vite/bin/vite.js",
|
|
"args": ["--port", "5173", "--host"],
|
|
"autoAttachChildProcesses": true,
|
|
"env": {
|
|
"NODE_ENV": "development"
|
|
},
|
|
"cwd": "${workspaceFolder}",
|
|
"console": "integratedTerminal"
|
|
}
|
|
]
|
|
}
|