Files
streamyfin/app.config.js
sarendsen 366bc0137e WIP
2025-01-31 13:22:51 +01:00

12 lines
227 B
JavaScript

module.exports = ({ config }) => {
if (process.env.EXPO_TV === "1") {
config.plugins.push([
"react-native-google-cast",
{ useDefaultExpandedMediaControls: true },
]);
}
return {
...config,
};
};