I have already used ng build -prod -aot -vc -cc -dop --buildOptimize to reduce the size of the builded app.
Now this is my situation:
Is it pos
Build your app with sourcemaps, then use a tool like source-map-explorer that details the size of every part of library that you're using.
Some tips with common libraries :
.pipe(operator1(), operator2()) syntax, it significantly reduces RxJS size when you don't use many different operators.scss filesIf you didn't already do it, divide your app into lazy modules, it will reduce the size of the initial chunk.