@docusaurus/plugin-content-blog 3.9.2-canary-6450 → 3.9.2-canary-6460

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.
package/lib/routes.js CHANGED
@@ -227,7 +227,7 @@ async function buildAllRoutes({ baseUrl, content, actions, options, aliasedSourc
227
227
  basePageUrl: author.page.permalink,
228
228
  blogDescription,
229
229
  blogTitle,
230
- pageBasePath: authorsBasePath,
230
+ pageBasePath,
231
231
  postsPerPageOption: postsPerPage,
232
232
  });
233
233
  return pages.map(({ metadata, items }) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@docusaurus/plugin-content-blog",
3
- "version": "3.9.2-canary-6450",
3
+ "version": "3.9.2-canary-6460",
4
4
  "description": "Blog plugin for Docusaurus.",
5
5
  "main": "lib/index.js",
6
6
  "types": "src/plugin-content-blog.d.ts",
@@ -31,14 +31,14 @@
31
31
  },
32
32
  "license": "MIT",
33
33
  "dependencies": {
34
- "@docusaurus/core": "3.9.2-canary-6450",
35
- "@docusaurus/logger": "3.9.2-canary-6450",
36
- "@docusaurus/mdx-loader": "3.9.2-canary-6450",
37
- "@docusaurus/theme-common": "3.9.2-canary-6450",
38
- "@docusaurus/types": "3.9.2-canary-6450",
39
- "@docusaurus/utils": "3.9.2-canary-6450",
40
- "@docusaurus/utils-common": "3.9.2-canary-6450",
41
- "@docusaurus/utils-validation": "3.9.2-canary-6450",
34
+ "@docusaurus/core": "3.9.2-canary-6460",
35
+ "@docusaurus/logger": "3.9.2-canary-6460",
36
+ "@docusaurus/mdx-loader": "3.9.2-canary-6460",
37
+ "@docusaurus/theme-common": "3.9.2-canary-6460",
38
+ "@docusaurus/types": "3.9.2-canary-6460",
39
+ "@docusaurus/utils": "3.9.2-canary-6460",
40
+ "@docusaurus/utils-common": "3.9.2-canary-6460",
41
+ "@docusaurus/utils-validation": "3.9.2-canary-6460",
42
42
  "cheerio": "1.0.0-rc.12",
43
43
  "feed": "^4.2.2",
44
44
  "fs-extra": "^11.1.1",
@@ -62,5 +62,5 @@
62
62
  "@total-typescript/shoehorn": "^0.1.2",
63
63
  "tree-node-cli": "^1.6.0"
64
64
  },
65
- "gitHead": "ce94bc05c81f98b1f1b4022e919fe3b43dc22fc5"
65
+ "gitHead": "a6e8e40ad3d664175c02021b0c677e1ee017f64e"
66
66
  }
package/src/routes.ts CHANGED
@@ -327,7 +327,7 @@ export async function buildAllRoutes({
327
327
  basePageUrl: author.page.permalink,
328
328
  blogDescription,
329
329
  blogTitle,
330
- pageBasePath: authorsBasePath,
330
+ pageBasePath,
331
331
  postsPerPageOption: postsPerPage,
332
332
  });
333
333