Firebase로 쉽게 구글 로그인을 이용할 수 있는 기능이 있어서 구현해보았다. Firebase 접속 > Authentication > Sign-in method > 새 제공업체 추가 firebase.ts import { getAuth } from "firebase/auth"; const app = initializeApp(firebaseConfig); const auth = getAuth(app); export { ..., auth }; Firebase 인증 기능을 연동하기 위해 getAuth를 import한다 import { GoogleAuthProvider, signInWithPopup } from "firebase/auth"; import { auth } from "@/firebase"; con..