Init astro

This commit is contained in:
aronmal 2023-08-21 21:41:04 +02:00
parent ba1b1d7080
commit 10e8f6a7de
Signed by: aronmal
GPG key ID: 816B7707426FC612
148 changed files with 3821 additions and 137 deletions

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

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

11
.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"
}
]
}