feat: scaffold Astro project with en/fr i18n routing

Sets output to static (Astro default) with path-based i18n routing
(/en/, /fr/) and no unprefixed default-locale route, per the hub
landing page design spec.
This commit is contained in:
2026-08-02 15:50:28 +02:00
parent a29cb5e984
commit e9d34f9d13
15 changed files with 4903 additions and 97 deletions
+4
View File
@@ -0,0 +1,4 @@
{
"recommendations": ["astro-build.astro-vscode"],
"unwantedRecommendations": []
}
+11
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"
}
]
}