Skip to content

Commit

Permalink
Cleanup export order
Browse files Browse the repository at this point in the history
  • Loading branch information
trevorsharp committed Apr 15, 2024
1 parent 9f2e4f7 commit faee5f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/[feedId]/feed/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ import { decompressModConfig } from "~/services/compressionService";
import { buildFeed, fetchFeedData } from "~/services/feedService";
import { applyMods } from "~/services/modService";

export const revalidate = 15 * 60;

const GET = async (request: Request, { params }: { params: { feedId: string } }) => {
try {
const { feedId } = params;
Expand All @@ -27,6 +29,4 @@ const GET = async (request: Request, { params }: { params: { feedId: string } })
}
};

export const revalidate = 15 * 60;

export { GET };

0 comments on commit faee5f3

Please sign in to comment.