first publish

This commit is contained in:
2026-09-06 17:21:52 +02:00
commit b8e41b4d55
147 changed files with 19367 additions and 0 deletions

22
next.config.ts Normal file
View File

@@ -0,0 +1,22 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
// Static HTML export → deployable on any web host (Hetzner, Netlify, Vercel, plain FTP)
output: "export",
// /leistungen/coaching/ → out/leistungen/coaching/index.html (works on dumb static hosts)
trailingSlash: true,
images: {
// No image optimisation server in a static export
unoptimized: true,
},
reactStrictMode: true,
experimental: {
/* Ohne dieses Flag hat der Export bei ZWEI Wurzel-Layouts (Deutsch und Englisch)
keine gestaltete 404 mehr: Next findet kein gemeinsames Layout und schreibt seine
eigene, ungestaltete Seite nach out/404.html. src/app/global-not-found.tsx ersetzt
sie und rendert das Dokument selbst. */
globalNotFound: true,
},
};
export default nextConfig;