Files

11 lines
269 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
output: 'export', // Statische Export-Dateien für einfachen Webserver
images: {
unoptimized: true, // Für statischen Export notwendig
},
};
module.exports = nextConfig;