import type { NextConfig } from "next"; const nextConfig: NextConfig = { // Vercel-kompatibel output: undefined, // standard für Vercel // Disable image optimization für einfaches Deployment images: { unoptimized: true, }, }; export default nextConfig;