Something went wrong. Try again.
This repository has no description
Something went wrong. Try again.
380 B · 13 lines
JavaScript
1234567891011121314const lucideTransformPlugin = require("./babel-plugin-lucide-transform");
module.exports = (api) => { api.cache(true); return { presets: [["babel-preset-expo", { jsxRuntime: "automatic" }]], plugins: [ lucideTransformPlugin, // NOTE: this is only necessary if you are using reanimated for animations "react-native-reanimated/plugin", ], };};