feat: initial v1 commit

This commit is contained in:
2024-04-27 10:26:28 +00:00
parent 7914d79aa3
commit 075f2e094e
39 changed files with 4875 additions and 2 deletions

9
next.config.mjs Normal file
View File

@@ -0,0 +1,9 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
webpack: (config) => {
config.externals.push("@node-rs/argon2", "@node-rs/bcrypt");
return config;
}
};
export default nextConfig;