Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- Next이미지
- 브라우저동작
- NextImage
- 마이크로태스크큐
- backend
- access token
- resource server
- 브라우저동작원리
- 콜스택
- NextImageSpan
- getServerSideProps
- prevProps
- nestjs
- CSS
- nextjs
- 리팩터링2판
- 이벤트루프
- 자바스크립트런타임
- resource owner
- componentDidUpdate
- 자바스크립트엔진
- NeXT
- getInitialProps
- 브루트포스
- react
- flexible box
- 매크로태스크큐
- 판교브루클린
- 개발도서추천
- BOJ
Archives
- Today
- Total
목록Next이미지 (1)
imgyuzzzang
NextJS Image에 <span> tag놈 왜 지맘대로 추가 돼!!!
next 13부터는 완전 해결되어 img 태그만 추가되지만 아직 안 쓰고 있으니^^ 스킵 Next 버전따라 해결방법 다름! 버전 확인 또는 맞춰서 사용할 것 v 12.1.1 ~ 12.2.0 // next.config.js module.exports = { experimental: { images: { layoutRaw: true } }, // Rest of the config }; v 12.2.x // next.config.js module.exports = { experimental: { images: { allowFutureImage: true } }, // Rest of the config };import Image from 'next/future/image' v 12.3 부터는 im..
computer science/웹
2023. 3. 29. 19:37