Change logo when app is installed

I have notice after installing frappe framework. When I login the splash is the logo of frappe but when I install ERPNext the logo change to ERPNext. How can I do that? What are the configs to change?

Add a hook. Check erpnext/hooks.py at develop · frappe/erpnext · GitHub Line 46

1 Like

@neilLasrado Thanks!. In details add this in your hooks.py

website_context = {
    "favicon": "/assets/erpnext/images/favicon.png",
    "splash_image": "/assets/erpnext/images/splash.png"
}
3 Likes