diff --git a/frontend/babel.config.js b/frontend/babel.config.js new file mode 100644 index 00000000..0c2c98c1 --- /dev/null +++ b/frontend/babel.config.js @@ -0,0 +1,13 @@ +module.exports = function (api) { + api.cache(true); + return { + presets: [ + [ + 'babel-preset-expo', + { + unstable_transformImportMeta: true, // Enable import.meta polyfill + }, + ], + ], + }; +};