yarn create next-app
or
yarn create next-app --typescript
호환성을 위해서 안전한 버전으로 직접 세팅해줍니다.
"dependencies": {
...
"next": "^12.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"devDependencies": {
...
"@types/react": "^17.0.2",
"eslint": "^8.0.1"
}
직접 수정이 끝나면 기존 node_modules 폴더를 지워주고 yarn install 로 모듈을 다시 설치해줍니다.
yarn add @emotion/react
yarn add @emotion/styled
yarn add install @apollo/client graphql
yarn add antd
or
npm install antd
npm install @mui/material @emotion/react @emotion/styled
or
yarn add @mui/material @emotion/react @emotion/styled
yarn add axios