This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
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"
}
]
}