Skip to content

Commit

Permalink
ar(fix) session req
Browse files Browse the repository at this point in the history
  • Loading branch information
angeloreale committed Aug 31, 2024
1 parent c4f49fc commit 1ec01cf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app/api/v1/user/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,9 @@ const generateErrorResponse = (e: any, status: number) => {
};
};

// export const dynamic = 'force-dynamic';
export const fetchCache = 'force-no-store';
export const revalidate = 0;
export const dynamic = 'force-dynamic';

export async function POST(request: CombineRequest) {
const response = { error: generateErrorResponse({ message: 'Code 000/0: Non-identified error.' }, 500) };
Expand Down

0 comments on commit 1ec01cf

Please sign in to comment.