구글로그인을 하기 위해서 서비스에 구글 로그인 버튼을 추가했습니다. async function handleLoginWithGoogle() { const provider = new GoogleAuthProvider() signInWithPopup(auth, provider) .then((result) => { const { user } = result; authStore.$patch({ auth: user, }); authUser.email = user.email as string; authUser.uid = user.uid; router.push(`/${DIARY}`); }) .catch((error) => { // Handle Errors here. const errorCode = error.code;..