While working on my Electron application my login functionality didn’t function anymore.
Root Cause
Updated Angular CLI and uglify also got updated. The newest uglify version breaks builds.
Solution
Run the following to temporarily go back to a working version:
npm i [email protected] --save-exact && rm -rf package-lock.json node_modules && npm i && npm ls uglify-es