Add basic astro site

This commit is contained in:
Brad Treloar 2025-11-01 00:00:41 +10:30
parent 049e68843b
commit 02babbe60b
16 changed files with 5092 additions and 0 deletions

4
astro/.vscode/extensions.json vendored Normal file
View file

@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}

11
astro/.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "./node_modules/.bin/astro dev",
"name": "Development server",
"request": "launch",
"type": "node-terminal"
}
]
}