반응형
SMALL

기타 3

프론트엔드 엔지니어 커리어 로드맵: 주니어를 위한 3가지 전문성 트랙

전문성 트랙에 있어서 좋은 글이 있어 링크를 가져왔습니다 https://steady-study.super.site/frontend-engineer-career-roadmap 프론트엔드 엔지니어 커리어 로드맵: 주니어를 위한 3가지 전문성 트랙 ‘웹 개발자’는 1990년대부터 있어왔지만 ‘프론트엔드 엔지니어’가 독립적인 직업군으로 불리게 된 것은 불과 10년도 채 안 됐다. 자바스크립트 생태계가 웹에 끼치는 영향이 급격히 커지고 U steady-study.super.site

기타 2023.01.07

[Firebase] Google Login 시, 강제로 구글유저 선택 창이 뜨게 하는 방법

구글로그인을 하기 위해서 서비스에 구글 로그인 버튼을 추가했습니다. 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;..

기타 2022.06.20

[Netlify] SPA 배포 후 새로고침시 404로 나올 때 대처하는 방법

/public 폴더 안에 ‘_redirects’ 파일을 만듭니다(file extension 붙이지 않습니다.) 해당 파일에 다음과 같이 입력하고 다시 Netlify에 배포하면 이슈가 해소됩니다. /* /index.html 200 참고 https://docs.netlify.com/routing/redirects/ Redirects and rewrites Netlify builds, deploys, and hosts your frontend. Learn how to get started, find examples, and access documentation for the modern web platform. docs.netlify.com

기타 2022.06.19
반응형
LIST