1
0
Fork 0
mirror of https://github.com/glitch-soc/mastodon.git synced 2024-05-15 05:33:51 -04:00

Disable Babel polyfill injection in dev (#27691)

This commit is contained in:
Renaud Chaput 2023-11-06 11:24:41 +01:00 committed by GitHub
parent 1416745a2b
commit 3bf896c973
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,6 +52,10 @@ module.exports = (api) => {
case 'development':
reactOptions.development = true;
envOptions.debug = true;
// We need Babel to not inject polyfills in dev, as this breaks `preval` files
envOptions.useBuiltIns = false;
envOptions.corejs = undefined;
break;
}