UNPKG

next-sanity

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