initial commit

This commit is contained in:
2025-09-15 10:37:21 +02:00
commit 6c07546695
144 changed files with 19113 additions and 0 deletions

11
next.config.ts Normal file
View File

@@ -0,0 +1,11 @@
import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
...(process.env.NODE_ENV === 'production' && {
output: 'export',
images: { unoptimized: true },
trailingSlash: true,
}),
};
export default nextConfig;