Home > Net >  Can angular polyfills.ts file be safely removed
Can angular polyfills.ts file be safely removed

Time:05-14

Now that angular is working with Ivy and decided to abandon internet explorer.

Shall we safely remove the polyfills.ts file in our Angular >= v13 project?

CodePudding user response:

According to the docs, Angular has a mandatory polyfill for zone.js. Without this polyfill, your application may not work. So it is not safe to remove the polyfills.ts file.

  • Related