This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Description
Issue Checklist
Problem
Currently, the modules that are executed when generating snapshots are the ones that are required in the vendor.ts file. With webpack 4 all node packages that are used in the app will be moved to one separate chunk. That makes the vendor.ts only needed when generating snapshots.
Proposed solution
We can dynamically generate requires for the modules that should be executed and add them to the 'snapshotted' chunk. That way, we won't need a separate vendor.ts file.