Skip to content

Commit 8480c34

Browse files
fixup! make site work with the Cloudflare OpenNext adapter
1 parent 2db8ddc commit 8480c34

File tree

1 file changed

+1
-1
lines changed
  • apps/site/app/[locale]/feed/[feed]

1 file changed

+1
-1
lines changed

apps/site/app/[locale]/feed/[feed]/route.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const GET = async (_: Request, props: StaticParams) => {
1414
const params = await props.params;
1515

1616
// Generate the Feed for the given feed type (blog, releases, etc)
17-
const websiteFeed = await provideWebsiteFeeds(params.feed);
17+
const websiteFeed = provideWebsiteFeeds(params.feed);
1818

1919
return new NextResponse(websiteFeed, {
2020
headers: { 'Content-Type': 'application/xml' },

0 commit comments

Comments
 (0)