limepot-xyz/.vscode/launch.json
2024-02-17 19:44:02 -07:00

17 lines
357 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",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}