I'm having similar issue seen here Webpack chunk styles and react.lazy.
I'm using react lazy to with react-router to make route based code-splitting. I have reusable component called Block which uses cssmodules and two pages (actually more than two but thats for an example). Both of them are lazy loaded and use Block multiple times.
On production the styles from Block seem to be in both chunks for the Pages, so when I initially load PageA its respective chunk is loaded. Everything is fine. Going to PageB also causes its chunk to be loaded. Now when going back to PageA both chunks are loaded and styles from PageB overwrite everything thus breaking layout.
Removing lazy import fixes the problem but that not the solution. While it's my first react project I'm quite sure I did everything correctly at least to my understanding.
To illustrate the problem here is screenshot of styles tab from devtools after entering few pages and going back to initial one
Any help is appreciated :)
I get this problem, and the solution for me was to import Layout component without using lazy, and use lazy for other page components And this problem was not in webpack.config.js file