a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

redirect base route home

+1 -3
+1 -3
app/route.ts
··· 7 7 export const fetchCache = "force-no-store"; 8 8 9 9 export async function GET() { 10 - let auth_token = (await cookies()).get("auth_token")?.value; 11 - if (auth_token) redirect("/home"); 12 - else await createNewLeaflet({ pageType: "doc", redirectUser: true }); 10 + redirect("/home"); 13 11 }