initial commit: fork

This commit is contained in:
2023-10-27 10:31:20 +02:00
commit a52dbbc103
195 changed files with 17484 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
// Importing env files here to validate on build
import './src/env.mjs';
import '@master-bot/auth/env.mjs';
/** @type {import("next").NextConfig} */
const config = {
reactStrictMode: true,
/** Enables hot reloading for local packages without a build step */
transpilePackages: ['@master-bot/api', '@master-bot/auth', '@master-bot/db'],
/** We already do linting and typechecking as separate tasks in CI */
eslint: { ignoreDuringBuilds: true },
typescript: { ignoreBuildErrors: true },
images: {
domains: ['cdn.discordapp.com']
},
experimental: {
serverActions: true
}
};
export default config;