Releases: harlan-zw/nuxt-site-config
Releases · harlan-zw/nuxt-site-config
v3.0.6
No significant changes
View changes on GitHub
v3.0.5
🐞 Bug Fixes
- Expose nuxt scope
#site-config
alias - by @harlan-zw (a3bf3) - Prefer explicit import paths over
#imports
- by @harlan-zw (f3a29)
View changes on GitHub
v3.0.4
v3.0.3
v3.0.2
v3.0.1
No significant changes
View changes on GitHub
v3.0.0
Nuxt Site Config v3
This major breaking change has been made to remove some of the complexity in the module and adds support for the Nuxt SEO v2 stable.
⚠️ Breaking Features
App Config Support Removed
If you were previously configuring your site config through app.config.ts
, you will now need to define it in your nuxt.config.ts
file.
-export default defineAppConfig({
+export default defineNuxtConfig({
site: {
url: 'example.com',
}
})
Deprecated nuxt-site-config-kit
and site-config-stack
The nuxt-site-config-kit
and site-config-stack
packages should no longer be used or depended on directly. Instead, the subpath exports should be used.
-import {} from 'nuxt-site-config-kit'
+import {} from 'nuxt-site-config/kit'
-import {} from 'site-config-stack'
+import {} from 'nuxt-site-config/utils'
Removed <SiteLink>
component
The <SiteLink>
component has been removed, please use your own Custom Link Component.
Removed assertSiteConfig
function
The assertSiteConfig
function has been removed, please validate site config using your own methods.
View changes on GitHub
v2.2.21
🐞 Bug Fixes
- Support deprecated path alias
#internal/nuxt-site-config
- by @harlan-zw (a0938)
View changes on GitHub
v2.2.20
No significant changes
View changes on GitHub
v2.2.19
🐞 Bug Fixes
- Allow module to be disabled with
enabled: false
- by @harlan-zw (d11f1) - Rework aliases - by @harlan-zw (e943a)
- kit: Mark side effect free - by @harlan-zw (d50bf)
- site-config-stack: Mark no side-effects - by @harlan-zw (75ff6)