728x90
npm install msw --save-dev
msw 라이브러리를 통해서 mock api를 생성하려고 시도했는데
아래와 같은 오류가 났다.
Module '"msw"' has no exported member 'setupWorker'.
왜인지는 모르겠지만 setupWorker를 찾을수가 없다고 나왔다....
import { setupWorker } from "msw";
import { handlers } from "./handlers";
export const worker = setupWorker(...handlers);
구글링을 조금 해보니 msw버전이 높은 경우 typescript를 적용할때 이슈가 생기는 경우가 있는 듯 하다.
msw버전을 낮춰서 해결하였다.
npm i msw@1.0.0
728x90
'오류들' 카테고리의 다른 글
[github Action] working-directory cannot be used with uses , with (0) | 2023.12.14 |
---|---|
[Figma,React] SVG이미지 겹침 현상 (0) | 2023.11.24 |
[REACT] Emotion 컴포넌트 선택자 사용시 에러 (0) | 2023.11.16 |
[WEB] 티스토리 "hELLO" 스킨에 mac스타일 코드블럭 적용안되는 오류 (4) | 2023.11.08 |
[React] redux-thunk , dispatch 연결 안되는 오류 (0) | 2023.05.08 |