mirror of
				https://github.com/reduxjs/redux-devtools.git
				synced 2025-11-04 18:07:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			30 lines
		
	
	
		
			848 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			848 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
import { createStore, applyMiddleware, compose } from 'redux';
 | 
						|
import thunk from 'redux-thunk';
 | 
						|
import invariant from 'redux-immutable-state-invariant';
 | 
						|
import { composeWithDevTools } from 'remote-redux-devtools';
 | 
						|
import reducer from '../reducers';
 | 
						|
import * as actionCreators from '../actions/counter';
 | 
						|
 | 
						|
export default function configureStore(initialState) {
 | 
						|
  const composeEnhancers = composeWithDevTools({
 | 
						|
    realtime: true,
 | 
						|
    actionCreators,
 | 
						|
    trace: true,
 | 
						|
  });
 | 
						|
  const store = createStore(
 | 
						|
    reducer,
 | 
						|
    initialState,
 | 
						|
    composeEnhancers(applyMiddleware(invariant(), thunk))
 | 
						|
  );
 | 
						|
 | 
						|
  if (module.hot) {
 | 
						|
    // Enable Webpack hot module replacement for reducers
 | 
						|
    module.hot.accept('../reducers', () => {
 | 
						|
      const nextReducer = require('../reducers').default;
 | 
						|
      store.replaceReducer(nextReducer);
 | 
						|
    });
 | 
						|
  }
 | 
						|
 | 
						|
  return store;
 | 
						|
}
 |