Initial commit from Create Next App

This commit is contained in:
Jan-Marlon Leibl
2025-01-12 18:46:32 +01:00
commit 732b6deb17
20 changed files with 352 additions and 0 deletions

8
next.config.ts Normal file
View File

@ -0,0 +1,8 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactStrictMode: true,
};
export default nextConfig;