@fy-/fws-vue 2.0.51 → 2.0.52

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.
@@ -116,6 +116,7 @@ export const useSeo = (seoData: Ref<LazyHead>, initial: boolean = false) => {
116
116
  keywords: () => seoData.value.keywords,
117
117
  articlePublishedTime: () => seoData.value.published,
118
118
  articleModifiedTime: () => seoData.value.modified,
119
+ /*
119
120
  ogImageSecureUrl: () => {
120
121
  if (seoData.value.image) {
121
122
  if (seoData.value.image.includes("?vars=")) {
@@ -131,6 +132,7 @@ export const useSeo = (seoData: Ref<LazyHead>, initial: boolean = false) => {
131
132
  return seoData.value.image;
132
133
  }
133
134
  },
135
+ */
134
136
  ogImageUrl: () => {
135
137
  if (seoData.value.image) {
136
138
  if (seoData.value.image.includes("?vars=")) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@fy-/fws-vue",
3
- "version": "2.0.51",
3
+ "version": "2.0.52",
4
4
  "author": "Florian 'Fy' Gasquez <m@fy.to>",
5
5
  "license": "MIT",
6
6
  "repository": {