Files
projet_gestion_commande/frontend-admin/app.config.js
T
2026-06-14 18:09:44 +02:00

12 lines
251 B
JavaScript

module.exports = ({ config }) => {
const updateUrl = process.env.EXPO_PUBLIC_UPDATE_URL;
return {
...config,
updates: {
...config.updates,
...(updateUrl ? { url: updateUrl } : {}),
},
};
};