Skip to content

Releases: harlan-zw/nuxt-site-config

v3.0.6

07 Dec 14:03
Compare
Choose a tag to compare

No significant changes

    View changes on GitHub

v3.0.5

07 Dec 13:53
Compare
Choose a tag to compare

   🐞 Bug Fixes

    View changes on GitHub

v3.0.4

24 Nov 15:47
Compare
Choose a tag to compare

   🐞 Bug Fixes

    View changes on GitHub

v3.0.3

24 Nov 15:10
Compare
Choose a tag to compare

   🐞 Bug Fixes

    View changes on GitHub

v3.0.2

24 Nov 12:56
Compare
Choose a tag to compare

   🐞 Bug Fixes

    View changes on GitHub

v3.0.1

24 Nov 12:47
Compare
Choose a tag to compare

No significant changes

    View changes on GitHub

v3.0.0

24 Nov 08:09
Compare
Choose a tag to compare

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

03 Nov 10:35
Compare
Choose a tag to compare

   🐞 Bug Fixes

  • Support deprecated path alias #internal/nuxt-site-config  -  by @harlan-zw (a0938)
    View changes on GitHub

v2.2.20

03 Nov 10:20
Compare
Choose a tag to compare

No significant changes

    View changes on GitHub

v2.2.19

03 Nov 10:19
Compare
Choose a tag to compare

   🐞 Bug Fixes

    View changes on GitHub