Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ | Rejoignez-nous sur le Chat
const ENV = "dev"; let server_url; switch (ENV) { case "dev": server_url = "http://localhost:9000"; break; case "prod": server_url = "http://your_production_server_url:port"; } module.exports = { server_url };