init glueastack Components

This commit is contained in:
Patryk
2025-04-04 21:52:34 +02:00
parent 3abef3acba
commit b248aee33d
18 changed files with 2980 additions and 1149 deletions

View File

@@ -0,0 +1,18 @@
module.exports = function(api) {
api.cache(true);
return {
presets: [["babel-preset-expo", {
jsxImportSource: "nativewind"
}], "nativewind/babel"],
plugins: [["module-resolver", {
root: ["./"],
alias: {
"@": "./",
"tailwind.config": "./tailwind.config.js"
}
}]]
};
};