export async function handle({ event, resolve }) {
const res = await auth.api.signInSocial({
body: {
provider: 'github',
callbackURL: '/'
}
});
redirect(302, res.url!);
}
export async function handle({ event, resolve }) {
const res = await auth.api.signInSocial({
body: {
provider: 'github',
callbackURL: '/'
}
});
redirect(302, res.url!);
}