1
0
forked from jleibl/jleibl.net

Initial commit from Create Next App

This commit is contained in:
2025-02-24 19:56:15 +01:00
commit f159f29ce9
20 changed files with 1179 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;