I am trying to do some bundling optimisation using webpack for isomorphic app,but am not able to avoid not needed chunk from loading for a route which doesn't require it.I would really appreciate some resource or solution you could point me to.
Ex: /home is the route Expected: home.chunk.js to only load Observation: home.chunk.js and home~details.chunk.js as well loading
I tried various webpack solutions and also tried code splitting but was unsuccessful.Below is the link for one of the resource.