limepot-xyz/.vscode/launch.json
2024-07-04 07:11:55 -06:00

17 lines
364 B
JSON
Executable file

{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro build",
"name": "Build prod",
"request": "launch",
"type": "node-terminal"
},
{
"command": "./node_modules/.bin/astro dev --host",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}