Rotas assíncronas causa erro inválido da soma de verificação do lado do servidor

Estou usando o Webpack, react, react-router, react-redux, redux e simple-redux-router.

Eu recebi esse erro ao usar o reag-router com rotas assíncronas e renderização do lado do servidor:

bundle.js:1 Warning: React attempted to reuse markup in a container but the checksum was invalid. This generally means that you are using server rendering and the markup generated on the server was not what the client was expecting. React injected new markup to compensate which works but you have lost many of the benefits of server rendering. Instead, figure out why the markup being generated is different on the client or server:

(client) <noscript data-reacti
(server) <div data-reactid=".1

Minhas rotas.cjsx tem isso:

# Routes
path: 'game'
getComponent: (location, cb) =>
    require.ensure [], (require) =>
        cb null, require './views/game'

Se eu mudar para isso, não recebo mais esse erro:

# Routes
path: 'game'
getComponent: (location, cb) =>
    cb null, require './views/game'

Existe uma maneira melhor de lidar com esse problema ao usar rotas assíncronas?

questionAnswers(1)

yourAnswerToTheQuestion