Initial commit from Create Next App

This commit is contained in:
James Blair 2026-05-08 17:40:05 +12:00
commit 3197d2fb1b
Signed by: james
SSH key fingerprint: SHA256:hsDR3ENI2ZMgh+CNb+0PrFsj29DI007R+BMKUVGi6zQ
19 changed files with 595 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 */
reactCompiler: true,
};
export default nextConfig;