v3.0.0
Release notes for v3.0.0.
⚠️ Breaking Changes
App Config Support Removed
If you were configuring your site config using the app.config.ts file, you will need to move your configuration to the
nuxt.config
export default defineNuxtConfig({
site: {
url: 'https://example.com',
name: 'My Website',
}
})
nuxt-site-config-kit and site-config-stack Deprecated
The
-import {} from 'nuxt-site-config-kit'
+import {} from 'nuxt-site-config/kit'
-import {} from 'site-config-stack'
+import {} from 'nuxt-site-config/utils'
<SiteLink> component Removed
The
assertSiteConfig function Removed
The
Did this page help you?