Files
pezkuwi-mobile-app/frontend/babel.config.js
T
2025-11-08 17:09:50 +00:00

23 lines
429 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: [
[
'babel-preset-expo',
{
unstable_transformImportMeta: true,
},
],
],
plugins: [
'@babel/plugin-transform-class-static-block',
['module:react-native-dotenv', {
moduleName: '@env',
path: '.env',
safe: false,
allowUndefined: true
}]
],
};
};