Я пытаюсь построить с помощью проекта create-реагировать-приложение, но я получаю эту ошибку, я не понимаю, что она работает должным образом в разработке "react-scripts": "3.1.1",
Creating an optimized production build...
Failed to compile.
Cannot read property 'type' of undefined
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! client@0.1.0 build: `react-scripts build`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the client@0.1.0 build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
после небольшого поиска в Googleобнаружил эту проблему, связанную с thunk
https://github.com/reduxjs/redux-thunk/issues/29
и мой код thunk выглядит следующим образом
const axiosInstance = axios.create({
baseURL:CONFIG.HOST,
withCredentials: true
});
const store = createStore(reducers, applyMiddleware(reduxThunk.withExtraArgument(axiosInstance)));
Но я не мог понять, что происходит