When we use lazy-loading for downloading specific web modules, e.g.:
import('./polyfills').then(render); Will the browser cache these dynamically loaded files and does webpack use the cached version on subsequent requests?
With bundle splitting I know the browser will cache the loaded files; I assume this should be the same for code splitting, but I'm not sure.