From 5a26f3d300e2b704981f64dae56fedb912877cd6 Mon Sep 17 00:00:00 2001 From: Patrick Date: Wed, 22 Apr 2026 13:03:49 +0200 Subject: [PATCH] =?UTF-8?q?Add:=20next.config.ts=20f=C3=BCr=20Static=20Exp?= =?UTF-8?q?ort?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 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 --- frontend/next.config.ts | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 frontend/next.config.ts diff --git a/frontend/next.config.ts b/frontend/next.config.ts new file mode 100644 index 0000000..c7c8fff --- /dev/null +++ b/frontend/next.config.ts @@ -0,0 +1,13 @@ +import type { NextConfig } from "next" + +const nextConfig: NextConfig = { + output: "export", + images: { + unoptimized: true, + }, + eslint: { + ignoreDuringBuilds: true, + }, +} + +export default nextConfig