8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
"use server";
|
|
|
|
import { revalidatePath } from "next/cache";
|
|
|
|
export async function revalidate() {
|
|
revalidatePath("/");
|
|
}
|