@dargmuesli/nuxt-vio 9.0.5 → 10.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -60,10 +60,15 @@ watch(
60
60
  )
61
61
 
62
62
  // initialization
63
- defineOgImage({
64
- alt: ogImageAltProp.value,
65
- component: ogImageComponentProp.value,
66
- })
63
+ defineOgImageComponent(
64
+ ogImageComponentProp.value || 'NuxtSeo',
65
+ {
66
+ description: siteConfig.description,
67
+ },
68
+ {
69
+ alt: ogImageAltProp.value,
70
+ },
71
+ )
67
72
  useAppLayout()
68
73
  useFavicons()
69
74
  usePolyfills()
package/nuxt.config.ts CHANGED
@@ -171,6 +171,11 @@ export default defineNuxtConfig(
171
171
  linkChecker: {
172
172
  failOnError: true,
173
173
  },
174
+ ogImage: {
175
+ defaults: {
176
+ extension: 'png', // TODO: remove once og-image requires jpg opt-in
177
+ },
178
+ },
174
179
  robots: {
175
180
  credits: false,
176
181
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dargmuesli/nuxt-vio",
3
- "version": "9.0.5",
3
+ "version": "10.0.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/dargmuesli/vio.git"
@@ -12,7 +12,7 @@
12
12
  "engines": {
13
13
  "node": "20"
14
14
  },
15
- "packageManager": "pnpm@8.11.0",
15
+ "packageManager": "pnpm@8.12.0",
16
16
  "files": [
17
17
  "assets",
18
18
  "components",
@@ -41,14 +41,14 @@
41
41
  "@nuxt/image": "1.1.0",
42
42
  "@nuxtjs/color-mode": "3.3.2",
43
43
  "@nuxtjs/html-validator": "1.6.0",
44
- "@nuxtjs/i18n": "8.0.0-rc.8",
44
+ "@nuxtjs/i18n": "8.0.0-rc.9",
45
45
  "@nuxtjs/tailwindcss": "6.10.1",
46
- "@nuxtseo/module": "2.0.0-beta.45",
46
+ "@nuxtseo/module": "2.0.0-beta.50",
47
47
  "@pinia/nuxt": "0.5.1",
48
48
  "@tailwindcss/forms": "0.5.7",
49
49
  "@tailwindcss/typography": "0.5.10",
50
50
  "@types/lodash-es": "4.17.12",
51
- "@urql/core": "4.2.0",
51
+ "@urql/core": "4.2.1",
52
52
  "@vuelidate/core": "2.0.3",
53
53
  "@vuelidate/validators": "2.0.4",
54
54
  "clipboardy": "4.0.0",
@@ -83,10 +83,10 @@
83
83
  "lodash-es": "4.17.21",
84
84
  "nuxt": "3.8.2",
85
85
  "pinia": "2.1.7",
86
- "prettier": "3.1.0",
86
+ "prettier": "3.1.1",
87
87
  "prettier-plugin-tailwindcss": "0.5.9",
88
88
  "serve": "14.2.1",
89
- "stylelint": "16.0.1",
89
+ "stylelint": "16.0.2",
90
90
  "stylelint-config-recommended-vue": "1.5.0",
91
91
  "stylelint-config-standard": "35.0.0",
92
92
  "stylelint-no-unsupported-browser-features": "7.0.0",