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

15 lines
246 B
Handlebars

module.exports = (api) => {
api.cache(true);
const plugins = [];
plugins.push("react-native-worklets/plugin");
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins,
};
};