@brillout/docpress 0.16.20 → 0.16.21

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.
@@ -43,6 +43,8 @@ function resolvePageContext(pageContext) {
43
43
  });
44
44
  }
45
45
  }
46
+ // Don't show landing page in navigation
47
+ navItemsAll = navItemsAll.filter((navItem) => navItem.url !== '/');
46
48
  const resolved = {
47
49
  navItemsAll,
48
50
  navItemsDetached,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@brillout/docpress",
3
- "version": "0.16.20",
3
+ "version": "0.16.21",
4
4
  "type": "module",
5
5
  "dependencies": {
6
6
  "@brillout/picocolors": "^1.0.10",
@@ -77,6 +77,9 @@ function resolvePageContext(pageContext: PageContextServer) {
77
77
  }
78
78
  }
79
79
 
80
+ // Don't show landing page in navigation
81
+ navItemsAll = navItemsAll.filter((navItem) => navItem.url !== '/')
82
+
80
83
  const resolved = {
81
84
  navItemsAll,
82
85
  navItemsDetached,