React Native app for the self-hosted music streaming project, carved out from the music-app monorepo. Uses @music-app/shared for shared types and utilities.
7 lines
175 B
JavaScript
7 lines
175 B
JavaScript
module.exports = function(api) {
|
|
api.cache(true);
|
|
return {
|
|
presets: ['babel-preset-expo'],
|
|
plugins: ['nativewind/babel', 'react-native-reanimated/plugin'],
|
|
};
|
|
}; |