Initial commit

This commit is contained in:
2025-08-03 18:48:24 +02:00
parent 49bb62fc4e
commit 62ebe48adb
14 changed files with 1262 additions and 1092 deletions

View File

@@ -1,9 +1,15 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
// Deine sonstigen NextOptionen, z.B.:
// reactStrictMode: true,
// images: { domains: [...] },
// rewrites: async () => [ ... ],
experimental: {
fontLoaders: [
{
loader: "@next/font/google",
options: {
subsets: ["latin"],
},
},
],
},
};
module.exports = nextConfig;