I'm trying to figure out what takes so long to load on the web application we are building. Here's the chrome developer tool network tab
Why is there a gap between scripts/stylesheet and the HTML?
I'm trying to figure out what takes so long to load on the web application we are building. Here's the chrome developer tool network tab
Why is there a gap between scripts/stylesheet and the HTML?
Load your library JS and relative css files from CDN location. It will give good performance improvement.
You can try use --prod
flag for your ng serve
or ng build
ng serve --prod
ng build --prod