Skip to content

Commit

Permalink
fix: forcing dynamic rendering
Browse files Browse the repository at this point in the history
  • Loading branch information
sandoche committed Sep 12, 2024
1 parent 7bf0f47 commit bd08b39
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/app/api/v1/indexer/auction-end-events/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,3 +74,5 @@ export async function GET() {
return Response.json({ error: 'Failed to index auction end events' }, { status: 500 });
}
}

export const dynamic = 'force-dynamic';
2 changes: 2 additions & 0 deletions src/app/api/v1/indexer/bid-events/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,3 +64,5 @@ export async function GET() {
return Response.json({ error: 'Failed to index bid events' }, { status: 500 });
}
}

export const dynamic = 'force-dynamic';
2 changes: 2 additions & 0 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,3 +41,5 @@ const RootLayout = ({
};

export default RootLayout;

export const dynamic = 'force-dynamic';

0 comments on commit bd08b39

Please sign in to comment.