Next.js mit App -Router für export zu statische dateien

This commit is contained in:
ISA
2024-09-23 10:32:17 +02:00
parent 7d0f59e280
commit c9e55dd66c
13 changed files with 961 additions and 27 deletions

View File

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