I am using the lock widget (v11) for user login:
lockAuth(e) { this.lock.show() }
For logout I am using the following code:
lockLogout() { this.lock.logout( { returnTo: window.location.href } ) }
This leads to a reload of my application after each logout.
I would like to avoid the redirect after login and rather not reload my SPA after logout. Is this possible?