boilerplate

This commit is contained in:
JonLuca De Caro
2026-03-03 18:43:35 -08:00
parent 66dace3f9b
commit 5ff5ef65c3
48 changed files with 4737 additions and 0 deletions

19
next.config.ts Normal file
View File

@@ -0,0 +1,19 @@
import "./src/env.js";
import { fileURLToPath } from "node:url";
import type { NextConfig } from "next";
const dirname = fileURLToPath(new URL(".", import.meta.url));
const config = {
reactStrictMode: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
turbopack: {
root: dirname,
},
reactCompiler: true,
} as NextConfig;
export default config;