인프런 영문 브랜드 로고
인프런 영문 브랜드 로고

Inflearn Community Q&A

groovejumat's profile image
groovejumat

asked

[Renewal] Creating NodeBird SNS with React

redux-saga/effects 를 resolve 못한다고 나오네요. 혹시 어떤 부분을확인해보면 해결할 수 있을까요?

Written on

·

363

0

에러로그는 아래와 같습니다.

ready - started server on http://localhost:3000

Error from chokidar (/): Error: EBUSY: resource busy or locked, lstat 'C:\hiberfil.sys'

Error from chokidar (/): Error: EBUSY: resource busy or locked, lstat 'C:\pagefile.sys'

Error from chokidar (/): Error: EBUSY: resource busy or locked, lstat 'C:\swapfile.sys'

error - ./sagas/post.js:2:0

Module not found: Can't resolve '/redux-saga/effects'

  1 | import axios from 'axios';

> 2 | import { delay, put, takeLatest, all, fork } from '/redux-saga/effects';

  3 | 

  4 | export default function* postSaga() {

  5 |     yield all([

reduxnodejsreactexpressNext.js

Answer 1

0

zerocho님의 프로필 이미지
zerocho
Instructor

redux-saga 앞 / 빼셔야합니다.

groovejumat's profile image
groovejumat

asked

Ask a question