diff --git a/frontend/babel.config.js.backup b/frontend/babel.config.js.backup new file mode 100644 index 00000000..a8871e20 --- /dev/null +++ b/frontend/babel.config.js.backup @@ -0,0 +1,16 @@ +module.exports = function (api) { + api.cache(true); + return { + presets: [ + [ + 'babel-preset-expo', + { + unstable_transformImportMeta: true, + }, + ], + ], + plugins: [ + '@babel/plugin-transform-class-static-block', + ], + }; +};