If angular auto-reload is not working on ubuntu 20.04 and you are using nvm try running the following:
- sudo echo "fs.inotify.max_user_watches=524288">> /etc/sysctl.conf
- Delete node_modules in your application's folder
- npm uninstall -g @angular/cli
- npm cache verify
- npm install -g @angular/cli
- In your application's folder run npm i
Hopefully when you run ng serve everything should work as expected now.