updated hero section and added google auth
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
export default {
|
||||
providers: [],
|
||||
providers: [
|
||||
{
|
||||
domain: process.env.CONVEX_SITE_URL,
|
||||
applicationID: "convex",
|
||||
},
|
||||
],
|
||||
};
|
||||
|
||||
@@ -1,6 +1,7 @@
|
||||
import { convexAuth } from "@convex-dev/auth/server";
|
||||
import { Password } from "@convex-dev/auth/providers/Password";
|
||||
import Google from "@auth/core/providers/google";
|
||||
|
||||
export const { auth, signIn, signOut, store } = convexAuth({
|
||||
providers: [Password],
|
||||
providers: [Password, Google],
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user