chore: ota

This commit is contained in:
2026-05-15 12:15:42 +02:00
parent 3eba3e3a15
commit 928a5f5f57
9 changed files with 152 additions and 12 deletions
+11
View File
@@ -0,0 +1,11 @@
module.exports = ({ config }) => {
const updateUrl = process.env.EXPO_PUBLIC_UPDATE_URL;
return {
...config,
updates: {
...config.updates,
...(updateUrl ? { url: updateUrl } : {}),
},
};
};