I have an angular 13 application that uses the javascript SDK 4.22. When I build the application there are a number of files generated in the build output. These appear to be lazy loaded modules. Is there a way I can configure either the SDK or webpack to combine these modules into a single file?
Why? due to some unusual requirements I have to deliver the angular application a little funky and the server is getting overloaded with requests for the dependencies ultimately resulting in 404 errors for a number of the files. I believe I can solve this if I were able to either: 1. include all dependencies in main.js (size isn't an issue) or 2. consolidate all dependencies into a single .js file.
I've been looking everywhere for a solution and so far have found nothing.