wip: Add expo plugin

This commit is contained in:
2026-04-24 20:47:24 +02:00
parent b160f9cede
commit eaeec5a35a
7 changed files with 306 additions and 835 deletions
+15
View File
@@ -0,0 +1,15 @@
import { createRunOncePlugin } from '@expo/config-plugins';
import type { ConfigPlugin } from '@expo/config-plugins';
import pkg from '../../package.json';
import { withMediaNotifications } from './withMediaNotifications';
import { withPip } from './withPip';
const withOmni: ConfigPlugin = (config) => {
let nextConfig = withPip(config);
nextConfig = withMediaNotifications(nextConfig);
return nextConfig;
};
export default createRunOncePlugin(withOmni, pkg.name, pkg.version);
export { withPip, withMediaNotifications };