일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 |
- useRouter
- 코드카타
- 소셜 로그인
- nextjs
- 구글 로그인
- 초기셋팅
- domain
- Next
- array정적메서드
- 프로그래머스
- 티스토리챌린지
- 오블완
- 자주 까먹는
- CORS
- 스파르타코딩클럽
- git
- React
- 프로젝트 셋팅
- 코딩테스트
- js
- deep dive
- 모던자바스크립트
- vscode
- vercel
- 모던 자바스크립트
- 코테
- 내일배움캠프
- 셋팅
- 리터럴
- error
- Today
- Total
목록2024/09/06 (3)
파피루스
정적 metadata 설정// layout.tsx 또는 특정 페이지 컴포넌트 파일 export const metadata = { title: '초보 개발자를 위한 리액트 입문', description: '리액트를 처음 배우는 개발자를 위한 기초부터 심화까지의 과정을 담은 페이지' }; 동적 metadata 설정import fetchProductDetails from '../path/to/api'; export async function generateMetadata({ params }) { const product = await fetchProductDetails(params.id); return { title: `${product.name} - 상품 정보`, ..
1. 원하는 로티 파일 찾아서 다운받기https://lottiefiles.com/featured-free-animations Featured Free Lottie Animations - Curated Motion DesignsExplore our featured free Lottie animations, handpicked for quality and creativity. Discover free animations to enhance your projects with stunning motion graphics.lottiefiles.com 2. 다운받은 파일을 프로젝트 내의 폴더로 옮기기 3. lottie player 설치npm i react-lottie-player 4. Lottie renderin..
앞서 말하자면 아래 url로 접속하면 튜토리얼이 잘 되어 있다.https://console.cloud.google.com/customer-identity/providers?project=calendar-with&walkthrough_id=identity-platform--sign-in-user-email 1. Identity Toolkit API 를 사용 설정한다.2. identity platform 을 사용설정한다 (추가하려는 프로젝트명이 맞는지 확인한다) (링크)3. 공급업체 추가하기 4. 테스트용 사용자 추가하기나는 사용자 aaa@test.aa , aaaa1111 의 정보로 게정을 추가했다. 5. API 키로 Identity Platform 클라이언트 SDK 초기화 6. 구글에서 제공한 테스트 ..