UNPKG

next-sanity

Version:
15 lines (14 loc) 408 B
"use server"; import { revalidatePath } from "next/cache.js"; import { draftMode } from "next/headers.js"; async function revalidateRootLayout() { if (!(await draftMode()).isEnabled) { console.warn("Skipped revalidatePath request because draft mode is not enabled"); return; } await revalidatePath("/", "layout"); } export { revalidateRootLayout }; //# sourceMappingURL=server-actions.js.map