Skip to content

Latest commit

 

History

History

with-polyfills

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

With Polyfills

Next.js supports IE11 and all modern browsers (Edge, Firefox, Chrome, Safari, Opera, et al) with no required configuration. It also adds some polyfills by default.

If your own code or any external npm dependencies require features not supported by your target browsers, you need to add polyfills yourself.

In this case, you should add a top-level import for the specific polyfill you need in your root layout or the individual component.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example with-polyfills with-polyfills-app
yarn create next-app --example with-polyfills with-polyfills-app
pnpm create next-app --example with-polyfills with-polyfills-app

Deploy it to the cloud with Vercel (Documentation).