v4.0.0
This new stable release for Nuxt SEO Utils introduces many stability improvements and support for dark and light icons.
This new stable release for Nuxt SEO Utils introduces many stability improvements and support for dark and light icons.
Dark / Light Mode Icons
When you have a site that supports both light and dark modes, it can make sense to serve two separate icons depending on which mode is selected. With Nuxt SEO Utils you can now opt-in to this feature by simply renaming your icons as either
<link rel="icon" href="/icon-dark.png" media="(prefers-color-scheme: dark)" />
<link rel="icon" href="/icon-light.png" media="(prefers-color-scheme: light)" />
Learn more on the docs.
Changelog
🚨 Breaking Changes
- Nuxt-site-config v2 - by @harlan-zw (ae73d)
🚀 Features
- Support
.dark ,.light icons - by @harlan-zw (e829c)
🐞 Bug Fixes
- Maybe resolve missing
unhead dep error - by @harlan-zw (9edcf) - Ensure logo links include
app.baseURL - by @harlan-zw (51486) - Empty image url breaking page - by @b-mounir-dev in https://github.com/harlan-zw/nuxt-seo-utils/issues/21 (aa458)
- No longer set default
en lang - by @harlan-zw (941c3) - Ensure plugin types are generated - by @harlan-zw (fd2a8)
- Broken type
seoMeta types - by @harlan-zw (06ed9) - Avoid redundant
favicon.ico link - by @harlan-zw (830ae) - Broken svg icon
link - by @harlan-zw (9950e)
Did this page help you?