mirror of
https://github.com/streamyfin/streamyfin.git
synced 2025-08-20 18:37:18 +02:00
12 lines
226 B
JavaScript
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,
|
|
};
|
|
};
|