Files
streamyfin_mirror/app.config.js
2025-02-05 09:44:03 +01:00

12 lines
226 B
JavaScript

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