vite 로 ssr 해보기
- vite-plugin-next-react-router 사용
yarn add vite-plugin-next-react-router -D
vite vs webpack
vite : esmodue 사용 webpack : 모듈 뭉쳐서 다들고옴
필요한 페이지만 삭
모든 컴포넌트 미리 들고 있음 ; 초기성능 느림
=> 대안 : hmr
react - query 사용해보기
$ yarn add react-query
Type 과 interface 차이가 확장이라고 ? No!
interface A extents a {
...
}
type A = {
id: string;
}
const a: A = {
}
msw 사용
Mock Service Worker : https://mswjs.io/docs/getting-started/install
graphQl 사용
$ yarn add graphql-tag graphql-request
Recoil 사용
$ yarn add recoil
Map ? 쓸까 객체쓸까 ?