mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 14:33:26 +00:00
15 lines
307 B
JavaScript
15 lines
307 B
JavaScript
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
['babel-preset-expo', { jsxImportSource: 'nativewind' }],
|
|
'nativewind/babel',
|
|
],
|
|
plugins: [
|
|
// Required for expo-router
|
|
'expo-router/babel',
|
|
'react-native-reanimated/plugin',
|
|
],
|
|
};
|
|
};
|