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
- 소셜 로그인
- domain
- CORS
- 코드카타
- 자주 까먹는
- 리터럴
- React
- nextjs
- 내일배움캠프
- Next
- git
- 오블완
- 구글 로그인
- 코딩테스트
- deep dive
- vscode
- error
- js
- 모던 자바스크립트
- array정적메서드
- 초기셋팅
- 모던자바스크립트
- 프로젝트 셋팅
- useRouter
- 프로그래머스
- 스파르타코딩클럽
- 코테
- vercel
- 티스토리챌린지
- 셋팅
- Today
- Total
파피루스
console warning 잡기 본문
1. [DEPRECATED] Default export is deprecated. Instead use `import { create } from 'zustand'`
변경 전 | 변경 후 |
import create from "zustand"; |
import { create } from "zustand"; |
2. Image with src has either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: "auto"' or 'height: "auto"' to maintain the aspect ratio.
변경 전 | 변경 후 |
<Image
src={src}
alt={alt}
fill
className={clsx(imageClassName)}
/>
|
<Image
src={src}
alt={alt}
fill
sizes="width:auto, height:auto"
className={clsx(imageClassName)}
/>
|
3. Image with src either width or height modified, but not the other. If you use CSS to change the size of your image, also include the styles 'width: "auto"' or 'height: "auto"' to maintain the aspect ratio.
변경 전 | 변경 후 |
<Image
src={src}
alt="type"
width={16}
height={16}
/>
|
<Image
src={src}
alt="type"
width={16}
height={16}
className="w-4 h-4"
/>
|
'Today I Learned > in dev' 카테고리의 다른 글
jsx/tsx, single quote 설정 (prettierrc, eslint) (0) | 2024.09.01 |
---|---|
warning: in the working copy of 'app/globals.css', LF will be replaced by CRLF the next time Git touches it (2) | 2024.08.31 |
PostMan, supabase.auth.user 셋팅하기 (0) | 2024.08.03 |
[supabase] type 자동 추론하기 (0) | 2024.07.31 |
[팀플] 다시는 error/warning 메세지를 무시하지 말아라 (1) | 2024.07.14 |