a tool for shared writing and social publishing
1import { createNewLeaflet } from "actions/createNewLeaflet";
2import { cookies } from "next/headers";
3import { redirect } from "next/navigation";
4
5export const preferredRegion = ["sfo1"];
6export const dynamic = "force-dynamic";
7export const fetchCache = "force-no-store";
8
9export async function GET() {
10 redirect("/home");
11}