Closed landsman closed 6 months ago
The workaround would be
link(rel="...", href="...") {
attributes["sizes"]="57x57"
}
You don't need to access the attributes
map, the sizes
attribute can be configured directly within the block of the declared tag, e.g.
link(rel="icon", type="image/png", href="%PUBLIC_URL%/img/android-icon-192x192.png") {
sizes = "192x192"
}
all right, thanks!
I need specify sizes attribute for favicons: