aboutsummaryrefslogtreecommitdiffstats
path: root/apps/mobile/babel.config.js
blob: f3c649bba6d02540f175f28a37c6f6a2957e4807 (plain) (blame)
1
2
3
4
5
6
7
8
9
module.exports = function (api) {
  api.cache(true);
  return {
    presets: [
      ["babel-preset-expo", { jsxImportSource: "nativewind" }],
      "nativewind/babel",
    ],
  };
};