Skip to content

Commit 4610e91

Browse files
authoredMar 3, 2025
fix: downgrade vuepress-plugin-seo to v0.14 (#213)
Downgraded vuepress-plugin-seo to v0.14 as the upgrade to v0.2 broke the SEO meta generation. The issue is due to v0.2 being intended for VuePress 2, which is not stated in the package requirements. Reference: lorisleiva/vuepress-plugin-seo#12
1 parent c4fc83f commit 4610e91

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed
 

‎docs/.vuepress/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,9 @@ module.exports = {
127127
}
128128
],
129129
[
130-
'vuepress-plugin-seo',
130+
'seo',
131131
{
132-
siteTitle: ($page, $site) => $site.title,
132+
siteTitle: (_, $site) => $site.title,
133133
title: $page => $page.title,
134134
description: $page => $page.frontmatter.description,
135135
author: ($page, $site) =>

‎package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
"vuepress-plugin-canonical": "^1.0.0",
2929
"vuepress-plugin-clean-urls": "^1.1.2",
3030
"vuepress-plugin-mathjax": "^1.2.8",
31-
"vuepress-plugin-seo": "^0.2.0",
31+
"vuepress-plugin-seo": "^0.1.4",
3232
"vuepress-plugin-sitemap": "^2.3.1",
3333
"vuepress-plugin-sitemap1": "^1.31.0-beta.1"
3434
},

0 commit comments

Comments
 (0)