Answer the question
In order to leave comments, you need to log in
How to perform an action in Redux using Next.js on the server side?
How to perform this action on the server side:
export const getItems = () => {
return dispatch => {
fetch('http://localhost:1337/global')
.then(res => res.json())
.then(data => dispatch({ type: GET_ITEMS, payload: data }))
.catch(err => console.error(err))
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question