vinext boiler

This commit is contained in:
JonLuca De Caro
2026-03-18 16:08:28 -07:00
commit a62d314b4a
22 changed files with 4722 additions and 0 deletions

15
next.config.ts Normal file
View File

@@ -0,0 +1,15 @@
import type { NextConfig } from "next";
import "./src/env";
const config: NextConfig = {
reactStrictMode: true,
poweredByHeader: false,
generateEtags: true,
devIndicators: false,
reactCompiler: true,
compiler: {
removeConsole: process.env.NODE_ENV === "production" ? { exclude: ["error", "warn"] } : false,
},
};
export default config;