Skip to content

Commit

Permalink
Fix legacy redirects
Browse files Browse the repository at this point in the history
  • Loading branch information
pookmish committed Oct 9, 2024
1 parent 328823c commit 1647744
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion app/books/legacy/[id]/comp/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {getLegacyBookPaths} from "@lib/utils/getLegacyBookPaths"

export const revalidate = false
export const dynamic = "force-static"
export const dynamicParams = false

const LegacyBookPage = async ({params}: {params: {id: string}}) => {
const legacyPaths = await getLegacyBookPaths()
Expand Down
1 change: 0 additions & 1 deletion app/books/legacy/[id]/extra/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {getLegacyBookPaths} from "@lib/utils/getLegacyBookPaths"

export const revalidate = false
export const dynamic = "force-static"
export const dynamicParams = false

const LegacyBookPage = async ({params}: {params: {id: string}}) => {
const legacyPaths = await getLegacyBookPaths()
Expand Down
1 change: 0 additions & 1 deletion app/books/legacy/[id]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ import {getLegacyBookPaths} from "@lib/utils/getLegacyBookPaths"

export const revalidate = false
export const dynamic = "force-static"
export const dynamicParams = false

const LegacyBookPage = async ({params}: {params: {id: string}}) => {
const legacyPaths = await getLegacyBookPaths()
Expand Down

0 comments on commit 1647744

Please sign in to comment.