If you were configuring your site config using the app.config.ts file, you will need to move your configuration to the nuxt.config.ts file
or set up runtime site config.
export default defineNuxtConfig({
site: {
url: 'https://example.com',
name: 'My Website',
}
})
nuxt-site-config-kit and site-config-stackThe 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'
<SiteLink> componentThe <SiteLink> component has been removed, please use your own Custom Link Component.
assertSiteConfig functionThe assertSiteConfig function has been removed, please validate site config using your own methods.