Grapevine_Disease_Detection/VinEye/babel.config.js
Yanis a964cc3836 add VinEye frontend app + fix hardcoded paths + gitignore
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 10:30:05 +02:00

10 lines
207 B
JavaScript

module.exports = function (api) {
api.cache(true);
return {
presets: [
['babel-preset-expo', { jsxImportSource: 'nativewind' }],
],
plugins: ['react-native-reanimated/plugin'],
};
};