Migrate to Netlify Today

Netlify announces the next evolution of Gatsby Cloud. Learn more

Browser Support

Gatsby supports the same browsers as the current stable version of React.js which is currently Edge, Firefox, Chrome, Safari, as well as the most recent versions of other popular browsers.

Polyfills

Gatsby leverages Babel’s ability to automatically add polyfills for your target browsers.

Newer browsers support more JavaScript APIs than older browsers. For older versions, Gatsby (via Babel) automatically adds the minimum “polyfills” necessary for your code to work in those browsers.

If you start using a newer JavaScript API like [].includes that isn’t supported by some of your targeted browsers, you won’t have to worry about it breaking the older browsers as Babel will automatically add the needed polyfill core-js/modules/es7.array.includes.

Specify what browsers your project supports using “Browserslist”

You may customize your list of supported browser versions by declaring a "browserslist" key within your package.json. Changing these values will modify your JavaScript (via babel-preset-env) and your CSS (via autoprefixer) output.

The article Browserslist is a Good Idea is a good introduction to the growing community of tools around Browserslist.

By default, Gatsby emulates the following config:

If you only support newer browsers, make sure to specify this in your package.json. This will often enable you to ship smaller JavaScript files.

Start building today on Netlify!
Edit this page on GitHub
© 2023 Gatsby, Inc.