Files
lst_v3/lstMobile/babel.config.js
Blake Matthes 7d2f048932
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m21s
feat(mobile): shadcn like and tailwind added to make things look yummy
2026-04-27 21:23:40 -05:00

10 lines
165 B
JavaScript

module.exports = (api) => {
api.cache(true);
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
};
};