Files
App/babel.config.js
Violet Caulfield 6dca3bac17 roll this back if it breaks everything lol
adding gluestack ui for some nice tailwind components
2024-10-14 05:55:45 -05:00

13 lines
326 B
JavaScript

module.exports = {
presets: ['module:@react-native/babel-preset', "nativewind/babel"],
plugins: [// react-native-reanimated/plugin has to be listed last
'react-native-reanimated/plugin', ["module-resolver", {
root: ["./"],
extensions: [".js", ".ts", ".tsx", ".jsx"],
alias: {
"@": "./"
}
}]]
};