React

Nextjs에서 Redux 에러 해결하기 Error from chokidar (D:\): Error: EBUSY: resource busy or locked, lstat 'D:\pagefile.sys' // next-redux-wrapper // Module not found: Can't resolve 'react' // Module not found: Can't resolve 'redux-actions'

Nextjs에서 React에 적용된 Redux 코드를 적용해보는 과정에서 실행할 때 에러가 많이 나왔다. 이를 해결한 방법을 정리해보려고 한다.

# 1

Module not found: Can't resolve 'react'null
라는 에러를 보고 해결 방법을 찾아보니 아래와 같이 설치해서 해결되었다.
npm i react
Bash
복사

# 2

Error from chokidar (D:\): Error: EBUSY:  ,,, 라는 메시지가 나타났는데 아래와 같이 설치하였다.
yarn add next-redux-wrapper
Bash
복사

# 3

Module not found: Can't resolve 'redux-actions'
yarn add redux-actions
Bash
복사