This commit is contained in:
Adrian Altner 2026-03-30 14:16:43 +02:00
commit 017bf6e067
115 changed files with 19650 additions and 0 deletions

17
.claude/launch.json Normal file
View file

@ -0,0 +1,17 @@
{
"version": "0.0.1",
"configurations": [
{
"name": "Astro Dev",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["dev"],
"port": 4321
},
{
"name": "Astro Preview",
"runtimeExecutable": "pnpm",
"runtimeArgs": ["preview"],
"port": 4321
}
]
}