BrowserRouter 는 history 객체를 자동으로 생성하고, 컴포넌트 단위로 history 객체를 컨트롤하기 때문에 커스텀 작업이 어렵다. 컴포넌트 바깥에서 history 객체를 컨트롤하기 위해서는 BrowserRouter 대신 Router를 사용하고, BrowserHistory 를 별도 생성하여 관리해야 한다. history 객체는 history 모듈에서 createBrowserHistory로 받아 올 수 있다. import { createBrowserHistory } from 'history'; const history = createBrowserHistory(); // 히스토리 객체 반환 const store = configureStore(history); 이렇게 작성해주는 방법과 따로 u..