And I have a simple dashboard controller that removes the default dashboards from view:
public class DashboardComposer : IComposer
{
public void Compose(IUmbracoBuilder builder)
{
builder.Dashboards().Remove<ContentDashboard>();
builder.Dashboards().Remove<RedirectUrlDashboard>();
}
}
This works great on local dev but won’t show on my umbraco cloud dev environment.
Most likely scenario is that it doesn’t copy the files into the build output - you can try to do a dotnet publish locally through the cli and see if the app plugin files are there.
If they are not then you can force it by adding this to your website csproj: