Skip to content

Commit

Permalink
[TOOL-3575] Dashboard: Fix home page link 404 after upgrading to next…
Browse files Browse the repository at this point in the history
…js 15.2
  • Loading branch information
MananTank committed Mar 3, 2025
1 parent 0046018 commit c16d5a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion apps/dashboard/next.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ const baseNextConfig: NextConfig = {
// re-write /home to / (this is so that logged in users will be able to go to /home and NOT be redirected to the logged in app)
{
source: "/home",
destination: "/",
destination: "https://landing.thirdweb.com",
},
...FRAMER_PATHS.map((path) => ({
source: path,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ export function MobileBurgerMenuButton(
</Link>

<Link
href="/"
href="/home"
className="text-base text-muted-foreground hover:text-foreground"
>
Home Page
Expand Down

0 comments on commit c16d5a1

Please sign in to comment.