Head Element
Add head element tags to your pages.
JavaScript
New-UDApp -Content {
New-UDHelmet -Tag 'script' -Attributes @{ src = "https://www.mycdn.com/site.js" }
}CSS
New-UDHelmet -Tag 'link' -Attributes @{
rel = 'stylesheet'
href = "mystylesheet.css"
} Styles
New-UDHelmet -Tag 'style' -Attributes @{
type = 'text/css'
} -Children {
"body { background-color: 'red'}"
}App
Last updated
Was this helpful?