Files
CPLv4.0/next.config.mjs

11 lines
264 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: "export", // Stellt den statischen Export sicher
images: {
unoptimized: true, // Deaktiviert Bildoptimierung für den Export
},
};
export default nextConfig;