aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/babel.config.js
blob: c8d46f96b60eb07b5c7096b8ea421bb648d82072 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
module.exports = function (api) {
  api.cache(true);
  const plugins = [];
  plugins.push("react-native-reanimated/plugin");
  return {
    presets: [
      ["babel-preset-expo", { jsxImportSource: "nativewind" }],
      "nativewind/babel",
    ],
    plugins,
  };
};