Files
Galaxies-ai-recorder/babel.config.js
T
Dennis Hundertmark 6ed3300183 Initial commit
Generated by create-expo-app 3.3.0.
2025-04-04 08:33:13 +02:00

11 lines
260 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: [
["babel-preset-expo", { jsxImportSource: "nativewind" }],
"nativewind/babel",
],
plugins: [["inline-import", { extensions: [".sql"] }]], // <-- add this
};
};