feat: setup magic link login via next auth

This commit is contained in:
Henry
2023-10-30 17:56:54 +00:00
parent afc634aa2c
commit 6fb43dc25c
7 changed files with 147 additions and 23 deletions

View File

@@ -5,6 +5,17 @@
await import("./src/env.mjs");
/** @type {import("next").NextConfig} */
const config = {};
const config = {
images: {
remotePatterns: [
{
protocol: "https",
hostname: "storage.googleapis.com",
port: "",
pathname: "/**",
},
],
},
};
export default config;