Recent Posts
Recent Comments
Archives
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 소셜 로그인
- 리터럴
- nextjs
- domain
- 모던자바스크립트
- 초기셋팅
- 구글 로그인
- js
- 코드카타
- 코테
- React
- 오블완
- 셋팅
- 스파르타코딩클럽
- 코딩테스트
- 모던 자바스크립트
- 티스토리챌린지
- deep dive
- git
- vercel
- useRouter
- vscode
- 자주 까먹는
- Next
- 내일배움캠프
- array정적메서드
- 프로그래머스
- 프로젝트 셋팅
- error
- CORS
- Today
- Total
파피루스
[next Js] Image tag + typescript generic 본문
nextJs > Image tag
- next의 IMAGE 태그는 상위 요소 중 position이 static 하지 않은 요소 기준으로 그린다.
<div className="relative aspect-square"> <Image src={imgURL} alt={title} fill className="object-contain" /> </div>
- css >> aspect-ratio : OOO
- css >> object-fit : OOO
- object-cover : 비율 유지한채로 넣기
- object-conatin : 비율 유지
- unoptimized : 리사이징을 안하고 싶을 때
<div className="relative aspect-square"> <Image src={deal.imgURL} alt={deal.title} fill unoptimized className="object-cover" /> </div>
useRouter : router.push로 페이지 이동시 단점
- seo 불가 (다른 페이지 탐색을 하지 않는다.)
seo 점수 높히는 방법
- 내부 링크 (내 사이트에서 내 사이트로 이동하는 것)
- 외부 링크 (타 사이트에서 내 사이트로 이동하는 것) : 이게 더 점수가 높을 것으로 예상
typescript generic
export type SDeal<IsDetail extends boolean = false> = {
id: number;
title: string;
imgURL: string;
price: number;
likesCount: number;
location: string;
} & (IsDetail extends true
? {
seller: {
avatarImgURL: string;
email: string;
}
createdAt: number;
content: string;
viewsCount: number;
}
: {});
'Today I Learned' 카테고리의 다른 글
[next] 왜 Next.js 를 쓸까 (0) | 2024.07.01 |
---|---|
[next] image tag (0) | 2024.06.28 |
cva와 함께 더 좋은 tailwindcss 사용하기 (0) | 2024.06.25 |
CLS(Cumulative Layout Shift) (0) | 2024.06.21 |
[NextJs] 첫걸음 (0) | 2024.06.20 |