mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 11:33:26 +00:00
12 lines
285 B
JavaScript
12 lines
285 B
JavaScript
/** @type {import("@babel/core").ConfigFunction} */
|
|
module.exports = function (api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: [
|
|
["babel-preset-expo", { jsxImportSource: "nativewind" }],
|
|
"nativewind/babel",
|
|
],
|
|
plugins: ["react-native-reanimated/plugin"],
|
|
};
|
|
};
|