Initial Next.js 15 app setup with TypeScript, Tailwind, ESLint, Turbopack, and API support. Project ready for migration.

This commit is contained in:
root
2025-07-09 10:27:02 +02:00
parent 3cf31dc55f
commit 51a728457a
3 changed files with 40 additions and 34 deletions

14
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "shell",
"label": "Build Next.js app",
"command": "npm run build",
"group": "build",
"problemMatcher": [
"$tsc"
]
}
]
}