The official Nx plugins rely on browserslist for configuring application browser support. This affects builds, both production and development, and will decide on which transformations will be run on the code when built.
In general, the more modern your applications browser support is, the smaller the filesize as the code can rely on modern API's being present and not have to ship polyfills or shimmed code.
By default, applications generated from official Nx generators ship an aggressively modern browser support config, in the form of a .browserslistrc
file in the root of the application with the following contents.
last 1 Chrome versionlast 1 Firefox versionlast 2 Edge major versionslast 2 Safari major versionlast 2 iOS major versionsFirefox ESRnot IE 9-11
This configuration is used for many tools including babel, autoprefixer, postcss, and more to decide which transforms are necessary on the source code when producing built code to run in the browser.
For additional information regarding the format and rule options, please see: https://github.com/browserslist/browserslist#queries
Debugging Browser Support
Section titled “Debugging Browser Support”Sometimes broad configurations like > 0.5%, not IE 11
can lead to surprising results, due to supporting browsers like Opera Mini or Android UC browser.
To see what browsers your configuration is supporting, run npx browserslist
in the application's directory to get an output of browsers and versions to support.
and_chr 61chrome 83edge 83edge 81firefox 78firefox 68ie 11ios_saf 13.4-13.5ios_saf 13.3ios_saf 13.2ios_saf 13.0-13.1ios_saf 12.2-12.4ios_saf 12.0-12.1safari 13.1safari 13safari 12.1safari 12
Alternatively, if your support config is short you can just add it as a string param on the CLI:
npx browserslist '> 0.5%, not IE 11'