Live video on the AT Protocol
1module.exports = (api) => { 2 api.cache(true); 3 return { 4 presets: [["babel-preset-expo", { jsxRuntime: "automatic" }]], 5 plugins: [ 6 // NOTE: this is only necessary if you are using reanimated for animations 7 "react-native-reanimated/plugin", 8 ], 9 }; 10};