node.js - Change auth0-lock-header-logo in Auth0 Delegated Administration -


i using auth0 delegated administration extension in app. need change auth0-lock-header-logo.

logo image

i have added logo: 'http://example.com/mylogo.png' below. not worked.

in \client\actions\auth.js

const auth0 = new auth0({ // eslint-disable-line no-undef   domain: window.config.auth0_domain,   clientid: window.config.auth0_client_id,   logo: 'http://example.com/mylogo.png',   callbackurl: `${window.config.base_url}/login`,   callbackonlocationhash: true  }); 

how change this?


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -