Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
feat: no path redirect to repo
Browse files Browse the repository at this point in the history
  • Loading branch information
eddiejaoude committed Jun 30, 2024
1 parent 2bcbb1f commit 7d81a17
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/middleware.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,12 @@ export const config = {
export async function middleware(req) {
const path = req.nextUrl.pathname;

if (path === "/") {
return NextResponse.redirect(
new URL("/EddieHubCommunity/BioDrop", "https://github.com")
);
}

if (path !== "/") {
return NextResponse.redirect(new URL(path, "https://github.com"));
}
Expand Down

0 comments on commit 7d81a17

Please sign in to comment.