kanade/babel.config.js
2026-04-05 23:34:55 +09:00

9 lines
No EOL
183 B
JavaScript

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