first deploy with astro

This commit is contained in:
2025-03-11 20:57:48 -03:00
parent 772cc74550
commit ac4d429eca
21 changed files with 6094 additions and 13 deletions

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

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

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