Logs do not work
export const { auth, signIn, signOut, store } = convexAuth({
providers: [
GitHub({
account: (acc) => {
console.log({ acc });
return acc;
},
}),
],
});
For some reason, this, logs do not work. It's frustrating. I need to get the accesstoken, I get from github
2 Replies