Files
beWerbung-2025/next.config.ts
T

11 lines
273 B
TypeScript
Raw Normal View History

2025-12-18 09:11:47 +01:00
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'export', // Statischer Export aktivieren
images: {
unoptimized: true, // Next.js Image Optimierung deaktivieren (für statischen Export nötig)
},
};
export default nextConfig;