Solution for react redux middleware cannot access variable defined in utils
is Given Below:
Hi I created a redux custom middleware and trying to call apiUrl
contstant value defined and exported from ./utils/api.js file. but getting this error
ReferenceError: Cannot access ‘apiUrl’ before initialization
.utils/api.js
file
export const apiUrl = window.apiUrl || `${window.location.origin}/api`;
redux-custom-middleware.js
file
import * as api from './config/api';
const apiUrl = api.apiUrl;
Though, this constant value is accessible in the entire app (all components and actions) but unable to access it inside redux custom middleware.
Thanks