Add: next.config.ts für Static Export

- output: export für statischen HTML Export in Next.js 14
- Images optimiert für Export
- ESLint Warnings während Build ignorieren

Ermöglicht npm run build → out/ für nginx Deployment

Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-04-22 13:03:49 +02:00
parent f55a5f34a7
commit 40259ec93c
+13
View File
@@ -0,0 +1,13 @@
import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "export",
images: {
unoptimized: true,
},
eslint: {
ignoreDuringBuilds: true,
},
}
export default nextConfig