After upgrading the Angular project version from 12 to 13, you notice a build error while executing the “ng build” CLI command on the Angular project.
The error says: “BrowserslistsError: Unknown version 92 of android”
This error occurs due to an obsolete list of the supported browser kit OS environments.
Solution
There is a simple solution to it:
Just execute the following command to update the list of Browsers lists in the package-lock file:
npx browserslist --update-db
After executing the above command, you will see the list of updated supported browsers list like below:
npm install caniuse-lite
“caniuse-lite has been successfully updated”
Leave a Reply