We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43714c6 commit 4086c32Copy full SHA for 4086c32
src/app/feed/route.tsx
@@ -29,8 +29,6 @@ interface RSSProps {
29
}[]
30
}
31
32
-export const dynamic = 'force-dynamic'
33
-
34
export async function GET() {
35
const ReactDOM = (await import('react-dom/server')).default
36
const queryClient = getQueryClient()
src/app/sitemap/route.tsx
@@ -1,9 +1,8 @@
1
import { getQueryClient } from '~/lib/query-client.server'
2
import { apiClient } from '~/lib/request'
3
4
5
-export const revalidate = 60 * 60 // 1 hour
6
export const dynamic = 'force-dynamic'
+export const revalidate = 60 * 60 // 1 hour
7
export const GET = async () => {
8
9
0 commit comments