set と書かれている場所をいくつか見つけましたqueryKey: false
が、使用している特定のパッケージでそれを設定する場所が見つかりません。これが私の現在の設定です:
import { hashHistory } from 'react-router'
import { syncHistoryWithStore } from 'react-router-redux'
import createStore from './store/createStore'
const store = createStore(initialState, hashHistory)
const history = syncHistoryWithStore(hashHistory, store, {
selectLocationState: (state) => state.router
})