action.ts 139 B

123456
  1. "use server";
  2. import { revalidatePath } from "next/cache";
  3. const action = async () => {
  4. revalidatePath("/");
  5. };
  6. export default action;