Temporarily remove server-side auth() calls
This commit is contained in:
parent
9c94c0b56b
commit
b9a59467ba
7
src/cache/index.ts
vendored
7
src/cache/index.ts
vendored
@ -1,4 +1,3 @@
|
||||
import { auth } from '@/auth';
|
||||
import { getPhoto, getPhotos } from '@/services/postgres';
|
||||
import { revalidatePath, revalidateTag, unstable_cache } from 'next/cache';
|
||||
|
||||
@ -42,11 +41,9 @@ export const getPhotoCached: typeof getPhoto = (...args) =>
|
||||
}
|
||||
)();
|
||||
|
||||
export const getImageCacheHeadersForAuth = async () => {
|
||||
const session = await auth();
|
||||
const shouldCacheRequest = !session?.user;
|
||||
export const getImageCacheHeadersForAuth = async (shouldCache = true) => {
|
||||
return {
|
||||
'Cache-Control': shouldCacheRequest
|
||||
'Cache-Control': shouldCache
|
||||
? 's-maxage=3600, stale-while-revalidate'
|
||||
: 's-maxage=1, stale-while-revalidate',
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user