1

Angular startup time: when I develop my angular 6 application in watch mode, it takes long time to load. I can’t afford the longer load time on every save. How can I cut down this time so I can be more productive?

blogs4t
  • 2,329
  • 5
  • 20
  • 33

1 Answers1

0

I guess, you are using ng serve. If so, you could disable rebuilding:

ng serve --watch=false

If rebuilding is fine, disable live-reload with --liveReload=false.

pzaenger
  • 11,381
  • 3
  • 45
  • 46