limepot-xyz/.vscode/launch.json

18 lines
364 B
JSON
Raw Normal View History

2023-08-13 16:35:03 -06:00
{
"version": "0.2.0",
"configurations": [
2024-02-17 19:44:02 -07:00
{
"command": "./node_modules/.bin/astro build",
"name": "Build prod",
"request": "launch",
"type": "node-terminal"
},
2023-08-13 16:35:03 -06:00
{
2024-07-04 07:11:55 -06:00
"command": "./node_modules/.bin/astro dev --host",
2023-08-13 16:35:03 -06:00
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}