CRA or CNA


# create-react-app 글로벌 설치
npm -g -i create-react-app

# 프로젝트별 설치
npx create-react-app <project-name>

# 로컬 서버 구동
npm start
# create-next-app 글로벌 설치
npm -g -i create-next-app

# 프로젝트별 설치
npx create-next-app

# <project-name> 적으면 폴더로 생성

# 로컬 서버 구동
npm run dev

필요한 Dependencies 설치


CSS GlobalStyle 세팅


MUI가 없는 경우

# styled-components 설치
npm install styled-reset styled-components