그냥 옮기는 중 잘 안되서 예전 appdir-#164 branch 참고
알고보니 index landing page css in js가 문제였다 server component에서 안되서
Styling: CSS-in-JS
Use CSS-in-JS libraries with Next.js
https://nextjs.org/docs/app/building-your-application/styling/css-in-js
근데 이게 app dir에서는 안되서 문제
근데 app dir에서는 app.tsx말고도 css import가능해서 그냥 css파일 분리하고 improt해서 해결
이런 놈들때문에 고생했는데 NextThemesProvider 가 client component없고 layout 바로 있어서였다
Sitemap
- app dir sitemap 내장지원 있어서 적용
- ssg안되서 sitemap.xml로 이전
- 이것도 fetch prop만 cache되서 그냥 원래대로
- 다만 priority나 edited time 추가
loading skeleton 구현하다 code spliting했는데 성능 좋아서 그대로 둠
Seonglae Cho