We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f73e0d commit 89f87d0Copy full SHA for 89f87d0
src/app/tweets/page.tsx
@@ -1,6 +1,9 @@
1
import { TweetCard } from "@/tweets/TweetCard"
2
import { getAllTweets } from "@/tweets/tweetDomain"
3
4
+// ref: https://github.com/opennextjs/opennextjs-cloudflare/issues/652
5
+export const dynamic = "force-dynamic"
6
+
7
const TweetFeedPage = async () => {
8
const tweets = await getAllTweets()
9
0 commit comments