mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 09:57:26 +03:00 
			
		
		
		
	* chore(deps): update dependency prettier to v3 * Format --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			961 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			961 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { createStore, applyMiddleware, compose } from 'redux';
 | 
						|
import thunk from 'redux-thunk';
 | 
						|
import invariant from 'redux-immutable-state-invariant';
 | 
						|
import devTools from 'remote-redux-devtools';
 | 
						|
import reducer from '../reducers';
 | 
						|
import {
 | 
						|
  START_MONITORING,
 | 
						|
  STOP_MONITORING,
 | 
						|
  SEND_TO_MONITOR,
 | 
						|
} from '../actions/monitoring';
 | 
						|
 | 
						|
export default function configureStore(initialState) {
 | 
						|
  const enhancer = compose(
 | 
						|
    applyMiddleware(invariant(), thunk),
 | 
						|
    devTools({
 | 
						|
      realtime: false,
 | 
						|
      startOn: START_MONITORING,
 | 
						|
      stopOn: STOP_MONITORING,
 | 
						|
      sendOn: SEND_TO_MONITOR,
 | 
						|
      sendOnError: 1,
 | 
						|
      maxAge: 30,
 | 
						|
    }),
 | 
						|
  );
 | 
						|
 | 
						|
  const store = createStore(reducer, initialState, enhancer);
 | 
						|
 | 
						|
  if (module.hot) {
 | 
						|
    // Enable Webpack hot module replacement for reducers
 | 
						|
    module.hot.accept('../reducers', () => {
 | 
						|
      const nextReducer = require('../reducers').default;
 | 
						|
      store.replaceReducer(nextReducer);
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  return store;
 | 
						|
}
 |