Pour tout problème contactez-nous par mail : support@froggit.fr | La FAQ :grey_question: | Rejoignez-nous sur le Chat :speech_balloon:

Skip to content
Snippets Groups Projects
config.js 240 B
Newer Older
const ENV = "dev";

let server_url;

switch (ENV) {
    case "dev":
peter_rabbit's avatar
peter_rabbit committed
        server_url = "http://localhost";
        break;
    case "prod":
        server_url = "http://your_production_server_url:port";
}

module.exports = { server_url };