feat(static): improve nextjs static example

- upgrade all dependencies
- upgrade to Tailwind CSS v4
- remove ugly default background
- remove unnecessary default content
- clean up files and remove those that are no longer needed
This commit is contained in:
peaklabs-dev
2025-06-23 21:41:11 +02:00
parent 0006219f4b
commit f8b3c24432
10 changed files with 3345 additions and 2295 deletions

View File

@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
@@ -18,9 +22,19 @@
}
],
"paths": {
"@/*": ["./*"]
}
"@/*": [
"./*"
]
},
"target": "ES2017"
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}