on the initial load I am getting: warning.js?8a56:44 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) <!-- react-empty: 1 - (server) <div data-reactroot="
is this a known issue? only in dev?
This warning has been mentioned in the caveat section of the documentation. It occurs only in development and is harmless. We are trying to fix it.
yzaroui
Front dev
In server.js (about line 80) replace
<div id="root">${html}</div>by
<div id="root"><div>${html}</div></div>In webpack.config.dev.js (about line 25) replace
publicPath: '0.0.0.0',by
publicPath: '127.0.0.1',