I am using oidc-client.js for Open ID Connect.
Here is the configuration file of User Manager.
```
const userManagerConfig = {
userStore: new WebStorageStateStore({ store: window.localStorage }),
client_id: process.env.REACT_APP_OAUTH_CLIENT_ID,
post_logout_redirect_uri: `${window.location.protocol}//${window.location.hostname}${window.location.port ? `:${window.location.port}` : ''}`,
client_frontchannel_logout_uris: `${window.location.protocol}//${window.location.hostname}${window.location.port ? `:${window.location.port}` : ''}/renew/silent_renew.html`,
redirect_uri: `${window.location.protocol}//${window.location.hostname}${window.location.port ? `:${window.location.port}` : ''}/oauth/callback`,
silent_redirect_uri: `${window.location.protocol}//${window.location.hostname}:${window.location.port}/renew/silent_renew.html`,
response_type: 'token id_token', //
scope: process.env.REACT_APP_OAUTH_SCOPE,
nonce: process.env.REACT_APP_OAUTH_NONCE,
acr_values: process.env.REACT_APP_OAUTH_ACR,
authority: process.env.REACT_APP_OAUTH_SERVER,
automaticSilentRenew: true,
accessTokenExpiringNotificationTime: process.env.REACT_APP_OAUTH_EXPIRY_CHECK,
revokeAccessTokenOnSignout: true,
};
```
I've also checked oxauth.log file. It is only logged INFO for Authentication Success. I don't see any logout log.