This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env -S bash -xeuo pipefail | |
| set -xeuo pipefail | |
| pkg install pacman patchelf \ | |
| which time ldd tree | |
| echo | |
| echo |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // Reduce overhead introduced by the Zone.js: | |
| // by Wassim Chegham (@manekinekko) | |
| // Instructions: | |
| // 1. Add this config in a different file, eg. zone-flags.ts | |
| // 2. make sure to check that your app is not relying on an API before disabling it!!! | |
| // 3. import ./zone-flags.ts in polyfills.ts | |
| // Not needed for morst of Angular apps | |
| (window as any).__Zone_disable_requestAnimationFrame = true; |