Tones/babel.config.js

15 lines
277 B
JavaScript
Raw Normal View History

2024-08-01 01:57:25 +00:00
module.exports = function (api) {
api.cache(true);
return {
presets: ['babel-preset-expo'],
2025-04-19 16:09:36 +00:00
plugins: [
['module:react-native-dotenv', {
moduleName: '@env',
path: '.env',
safe: false,
allowUndefined: true
}]
]
2024-08-01 01:57:25 +00:00
};
};