feat: update Next.js configuration and dependencies, add Docker support

- Set output mode to "standalone" in next.config.ts
- Update dependencies in package.json:
  - Upgrade @heroui/react to ^2.8.5
  - Upgrade framer-motion to ^12.23.25
  - Upgrade next to 16.0.7
  - Upgrade react and react-dom to 19.2.1
  - Upgrade undici to ^7.16.0
  - Upgrade devDependencies including @biomejs/biome, @tailwindcss/postcss, and typescript
- Modify error handling in API routes to simplify catch blocks
- Refactor NotFound component for cleaner JSX structure
- Update global CSS imports for consistency
- Change tsconfig to use "react-jsx" for JSX and include additional type definitions
- Add GitHub Actions workflow for Docker image build and push
- Create Dockerfile for multi-stage build process
- Add development and production Docker Compose configurations

ai commit message xd
This commit is contained in:
2025-12-06 01:41:00 +01:00
parent d33cff7063
commit cf243d46f1
14 changed files with 455 additions and 386 deletions
+16 -16
View File
@@ -5,32 +5,32 @@
"author": "albert|skidoodle@gh",
"license": "AGPL-3.0",
"scripts": {
"dev": "next dev --turbopack",
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "biome lint --write",
"format": "biome format --write"
},
"dependencies": {
"@heroui/react": "^2.8.0-beta.9",
"framer-motion": "^12.18.1",
"next": "15.4.8",
"@heroui/react": "^2.8.5",
"framer-motion": "^12.23.25",
"next": "16.0.7",
"next-themes": "^0.4.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"react": "19.2.1",
"react-dom": "19.2.1",
"react-icons": "^5.5.0",
"undici": "^7.10.0"
"undici": "^7.16.0"
},
"devDependencies": {
"@biomejs/biome": "2.0.0",
"@tailwindcss/postcss": "^4.1.10",
"@types/node": "24.0.3",
"@types/react": "19.1.8",
"@types/react-dom": "19.1.6",
"@biomejs/biome": "2.3.8",
"@tailwindcss/postcss": "^4.1.17",
"@types/node": "24.10.1",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"postcss": "8.5.6",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.13",
"tailwindcss": "^4.1.10",
"typescript": "5.8.3"
"prettier": "^3.7.4",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.17",
"typescript": "5.9.3"
}
}