We have numerous dependencies (node_modules) in our Angular app, which are typically licensed under Apache 2.0 or MIT. From my understanding of the licenses, the production build is considered a "derived work" and we are required to include copyright notices in it.
I am aware that I can copy them using a script or include them in an angular.json file (as seen here: angular web app - include library licenses), but I wanted to find a solution recommended by Angular developers. It seems like a common issue, yet there isn't much information available on this topic.
Could it be possible that Angular applications utilizing dependencies do not actually need to include copyright notices?