fork
Configure Feed
Select the types of activity you want to include in your feed.
Live video on the AT Protocol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1module.exports = (api) => {
2 api.cache(true);
3 return {
4 presets: [["babel-preset-expo", { jsxRuntime: "automatic" }]],
5 plugins: [
6 [
7 "@tamagui/babel-plugin",
8 {
9 components: ["tamagui"],
10 config: "./tamagui.config.ts",
11 logTimings: true,
12 disableExtraction: process.env.NODE_ENV === "development",
13 },
14 ],
15
16 // NOTE: this is only necessary if you are using reanimated for animations
17 "react-native-reanimated/plugin",
18 ],
19 };
20};