Initial commit

This commit is contained in:
Mindboost
2025-07-01 10:53:26 +00:00
commit 38050e5c69
416 changed files with 48708 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Nuxt 3: Chrome starten auf HTTPS",
"url": "https://localhost:3000",
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"--ignore-certificate-errors"
]
}
]
}