Initial commit

This commit is contained in:
Maze Winther
2025-06-22 10:02:50 +02:00
commit 87a83a5604
72 changed files with 12530 additions and 0 deletions

11
apps/web/next.config.ts Normal file
View File

@ -0,0 +1,11 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
compiler: {
removeConsole: process.env.NODE_ENV === "production",
},
reactStrictMode: true,
productionBrowserSourceMaps: true,
};
export default nextConfig;