Skip to content

Commit 5ac566c

Browse files
authored
πŸ› Fix unexpected page caching (#470)
1 parent 31fef0c commit 5ac566c

File tree

3 files changed

+9
-0
lines changed

3 files changed

+9
-0
lines changed

β€Ž.changeset/gentle-moles-hug.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"socialify": patch
3+
---
4+
5+
Fix unexpected page caching

β€Žapp/[_owner]/[_name]/page.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { JSX } from 'react'
44

55
import MainRenderer from '@/src/components/mainRenderer'
66

7+
export const runtime = 'edge'
8+
79
export default function PreviewConfigPage(): JSX.Element {
810
return <MainRenderer />
911
}

β€Žapp/page.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { JSX } from 'react'
44

55
import Repo from '@/src/components/repo/repo'
66

7+
export const runtime = 'edge'
8+
79
export default function HomePage(): JSX.Element {
810
return <Repo />
911
}

0 commit comments

Comments
Β (0)