How can I hide the Getting Started dashboard in Um...
# help-with-umbraco
a
Previously we could use a Composer to remove the getting started dashboard, which was fully supported by the core, what's the official process in V15?
s
m
Maybe something like this
Copy code
import { UmbEntryPointOnInit } from '@umbraco-cms/backoffice/extension-api';
import { umbExtensionsRegistry } from '@umbraco-cms/backoffice/extension-registry';

export const onInit: UmbEntryPointOnInit = (_host) => {
    // remove default dashboards
    umbExtensionsRegistry.exclude('Umb.Dashboard.UmbracoNews');
    umbExtensionsRegistry.exclude('Umb.Dashboard.RedirectManagement');
};
56 Views