There is a global config accessible from all over the application. In config.js of your application, you can set all configuration parameters depending on your environment.

The following example sets the log-level for the entire application to 7 and uses MemoryStorage as SessionStorage.

config.setValues({
    "logging": {
        "level": 7
    },
    "session": {
        "engine": "MemoryStorage",
    }
});

Comments