작성
·
681
0
강의에 올라와 있는 pages폴더에서 index.js 파일
getServerSideProps부분이 저도 store.dispatch오류가 나서 고차함수로 바꾸어 주니까 해결됬습니다. 근데 이유를 잘모르겠습니다 ㅠㅠ
export const getServerSideProps = wrapper.getServerSideProps(
(store) => async () => {
store.dispatch({
type: LOAD_MY_INFO_REQUEST,
});
store.dispatch({
type: LOAD_POSTS_REQUEST,
});
store.dispatch(END);
await store.sagaTask.toPromise();
}
);
위에 코드가 dispatch오류가 나고
이런식으로 수정을 해주었더니 해결이 되었는데 오류가 난 원인이 무엇인지 잘모르겠습니다
next-redux-wrapper은 ^8.1.0입니다