Get-UDDashboard | Stop-UDDashboard
$Theme = New-UDTheme -Name "Test" -Definition @{
".ud-navbar" = @{
display = "none"
}
".ud-footer" = @{
display = "none"
}
} -Parent 'Default'
$Dashboard = New-UDDashboard -Title "No header" -Content {
} -Theme $Theme
Start-UDDashboard -Dashboard $Dashboard -Port 10002
6 Likes