Files
create-better-t-stack/apps/cli/templates/frontend/native/unistyles/babel.config.js.hbs
2025-09-12 00:11:41 +05:30

22 lines
329 B
Handlebars

module.exports = (api) => {
api.cache(true);
const plugins = [];
plugins.push([
"react-native-unistyles/plugin",
{
root: "src",
autoProcessRoot: "app",
autoProcessImports: ["@/components"],
},
]);
plugins.push("react-native-worklets/plugin");
return {
presets: ["babel-preset-expo"],
plugins,
};
};