- Vite
폴더 구조
├── public │ ├── favicon.ico ├── src │ ├── components │ │ ├── common │ │ │ ├── index.ts │ │ │ ├── button │ │ │ │ ├── index.tsx │ │ │ │ └── style.tsx │ │ │ ├── input │ │ │ └── ... │ │ ├── 페이지명(페이지에서만 사용할 컴포넌트) │ │ └── ... │ ├── routes │ │ ├── index.tsx │ │ └── ... │ ├── types │ │ ├── index.ts │ │ └── ... │ ├── constants │ │ ├── index.ts │ │ ├── common.ts │ │ └── 페이지별 상수.ts │ ├── pages │ │ ├── 로그인.tsx │ │ ├── 게시판.tsx │ │ ├── 마이페이지.tsx │ │ └── ... │ ├── hooks │ │ ├── index.ts │ │ ├── useXXX.ts │ │ └── ... │ ├── api │ │ ├── index.ts │ │ ├── 페이지명 │ │ └── ... │ ├── assets │ │ ├── 이미지 │ │ └── 폰트 │