@apify/docs-theme 1.0.47 → 1.0.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apify/docs-theme",
3
- "version": "1.0.47",
3
+ "version": "1.0.48",
4
4
  "description": "",
5
5
  "main": "./src/index.js",
6
6
  "files": [
@@ -54,7 +54,7 @@ function ApiNavbarItem(ctx) {
54
54
  exact
55
55
  {...ctx}
56
56
  label={ctx.label}
57
- to={`api/${ctx.to}`}
57
+ to={`reference/${ctx.to}`}
58
58
  />
59
59
  );
60
60
  }
@@ -71,7 +71,7 @@ function ApiNavbarItem(ctx) {
71
71
  exact
72
72
  {...ctx}
73
73
  label={ctx.label}
74
- to={`docs/${version.version === 'current' ? 'next' : version.version}/api/${ctx.to}`}
74
+ to={`docs/${version.version === 'current' ? 'next' : version.version}/reference/${ctx.to}`}
75
75
  />
76
76
  );
77
77
  }
@@ -81,7 +81,7 @@ function ApiNavbarItem(ctx) {
81
81
  exact
82
82
  {...ctx}
83
83
  label={ctx.label}
84
- to={`api/${version.version === 'current' ? 'next' : version.version}/${ctx.to}`}
84
+ to={`reference/${version.version === 'current' ? 'next' : version.version}/${ctx.to}`}
85
85
  />
86
86
  );
87
87
  }