import { revalidate } from "lib/shopify"; import { NextRequest, NextResponse } from "next/server"; export const runtime = "edge"; export async function POST(req: NextRequest): Promise { return revalidate(req); }