I know little bit about webpack, but can not find a simple answer to my question. What does code splitting with Webpack mean?
Is it creating individual bundle js files for different routes and performing ajax operations for getting these js files when requested by the client.
Or is it performing async calls for getting other individual js files from server after showing the first requested page properly after the first hit?
Before I learn how to do, I would like to have an idea about what I am learning. Webpack docs doesn't help at all. It assumes you fully understand how webpack works.