Project init

This commit is contained in:
Xevion
2023-01-12 20:58:40 -06:00
commit 40441ed328
19 changed files with 10159 additions and 0 deletions

17
next.config.mjs Normal file
View File

@@ -0,0 +1,17 @@
// @ts-check
/**
* Run `build` or `dev` with `SKIP_ENV_VALIDATION` to skip env validation.
* This is especially useful for Docker builds.
*/
!process.env.SKIP_ENV_VALIDATION && (await import("./src/env/server.mjs"));
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
swcMinify: true,
i18n: {
locales: ["en"],
defaultLocale: "en",
},
};
export default config;