Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/components/Page/Page.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export default function Page(props) {
}, [props.content]);

const { hash, pathname } = useLocation();
const isBlogIndex = pathname === "/blog/";

useEffect(() => {
let observer;
Expand Down Expand Up @@ -129,7 +130,7 @@ export default function Page(props) {

<PageLinks page={rest} />

{(previous || next) && (
{!isBlogIndex && (previous || next) && (
<AdjacentPages previous={previous} next={next} />
)}

Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/2020-10-10-webpack-5-release.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Webpack 5 release (2020-10-10)
sort: -202010100
sort: 20201010
contributors:
- sokra
- chenxsan
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/2020-12-08-roadmap-2021.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Roadmap 2021 (2020-12-08)
sort: -202012080
sort: 20201208
contributors:
- sokra
---
Expand Down
2 changes: 1 addition & 1 deletion src/content/blog/2026-04-02-roadmap-2026.mdx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
title: Roadmap 2026 (2026-02-04)
sort: 9
sort: 20260204
contributors:
- evenstensberg
- bjohansebas
Expand Down
4 changes: 0 additions & 4 deletions src/content/blog/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,3 @@ contributors:
Read here for announcements.

See recent blog posts in the side bar.

## Popular posts

- [Webpack 5 release (2020-10-10)](/blog/2020-10-10-webpack-5-release/)
1 change: 1 addition & 0 deletions src/content/blog/webpack-5-105.mdx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
title: Webpack 5.105 (2026-02-03)
sort: 20260203
contributors:
- bjohansebas
---
Expand Down
Loading