mirror of
https://github.com/pezkuwichain/pezkuwi-mobile-app.git
synced 2026-04-22 10:57:55 +00:00
14 lines
238 B
JavaScript
14 lines
238 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
[
|
|
'babel-preset-expo',
|
|
{
|
|
unstable_transformImportMeta: true, // Enable import.meta polyfill
|
|
},
|
|
],
|
|
],
|
|
};
|
|
};
|