silentAuth() method

Hi, my name is Federico.

I have the following question.
the silentAuth () method reloads the page when requesting the token and redirects me to my ‘redirectUri’.
Is there a way to avoid this redirect and to log without redirecting?

My silectAuth() method:
silentAuth() {
return new Promise((resolve, reject) => {
this.auth0.checkSession({}, (err, authResult) => {
if (err) return reject(err);
this.setSession(authResult);
resolve();
});
});
}

Thanks.