Files
zmb-webui/frontend/next.config.ts
patrick 5a26f3d300 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>
2026-06-04 14:58:50 +02:00

14 lines
209 B
TypeScript

import type { NextConfig } from "next"
const nextConfig: NextConfig = {
output: "export",
images: {
unoptimized: true,
},
eslint: {
ignoreDuringBuilds: true,
},
}
export default nextConfig