-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
03c5169
commit 3d5435f
Showing
9 changed files
with
43 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
+++ | ||
title = "7. Next.js" | ||
title = "8. Next.js" | ||
description = "Next.js를 이용해 SSR을 구현해봅니다." | ||
icon = "article" | ||
date = "2023-09-11" | ||
|
@@ -9,13 +9,19 @@ weight = 280 | |
|
||
지금까지 배운 React는 CSR(Client Side Rendering) 방식으로 동작해요! 즉 서버에서 브라우저로 전달되는 HTML 파일에는 일부 정보만 담겨있고, 나머지 정보는 브라우저에서 JavaScript를 통해 가져오는 방식이예요! 이러한 이유로 초기 로딩 속도가 느리고, 검색 엔진 최적화(SEO)가 어렵다는 단점이 있어요. 이번 시간에는 이러한 단점을 보완하기 위해 React에 SSR(Server Side Rendering)을 적용한 Next.js를 알아봅시다! | ||
|
||
여러분의 공부를 돕기 위해 준비한 자료들이에요. 따라서 꼭 준비된 자료만 공부할 필요는 없어요! 자신만의 방식으로 공부하고 과제만 잘 수행하면 돼요! 😄 | ||
|
||
## 📚 공부할 내용 | ||
|
||
- [Next.js 공식문서](https://nextjs.org/docs) | ||
- [[손에 익는 Next.js] 공식 문서 훑어보기](https://www.inflearn.com/course/%EC%86%90%EC%97%90-%EC%9D%B5%EB%8A%94-nextjs-part1/dashboard) | ||
- 인프런 아이디는 `[email protected]`이고 비밀번호는 노션 신규 팀원 스터디 페이지에 있어요! | ||
- [어서 와, SSR은 처음이지? - 도입편](https://d2.naver.com/helloworld/7804182) | ||
- 네이버 블로그에 SSR을 도입하게 된 이유를 주제로 SSR을 설명하고 있어요! | ||
- SSR을 이해하는데 도움이 될 거예요! | ||
- [Next.js 프로젝트 영상](https://www.youtube.com/watch?v=wm5gMKuwSYk&list=PL6QREj8te1P7gixBDSU8JLvQndTEEX3c3&index=1) | ||
- 하나의 프로젝트를 처음부터 끝까지 만드는 영상이에요! 지금은 이거를 전부 할 필요는 없고, 현재로서는 34:20까지 보아도 Next.js의 기본적이면서 중요한 기능들을 배울 수 있어요!(영상을 보면서 해당부분 공식문서도 함께 읽어보면 더욱 좋아요!) | ||
- (해당 링크 영상은 javascript로 프로젝트를 진행하지만, 해당 유튜브채널 들어가보면 typescript로 진행하는 프로젝트도 많습니다!) | ||
|
||
## 🎯 프로젝트 실습 | ||
|
||
|
@@ -49,4 +55,4 @@ weight = 280 | |
- 기존 a 태그를 Link 컴포넌트로 대체해주세요! | ||
- 언제 prefetching이 발생하는지 확인해보세요! (공식 문서에 나와있어요!) | ||
- Next.js가 제공하는 Font 컴포넌트를 사용해서 `Noto sans KR`로 폰트를 변경해주세요! | ||
- Next.js의 Font 컴포넌트는 어떠한 이점이 있을까요? | ||
- Next.js의 Font 컴포넌트는 어떠한 이점이 있을까요? |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters