Order Confirmation

This commit is contained in:
tedraykov
2024-06-28 18:21:44 +03:00
parent 68039b1a6e
commit f4f6edcd9a
39 changed files with 2386 additions and 363 deletions

View File

@@ -0,0 +1,7 @@
import { getOrderConfirmationContent } from 'lib/shopify';
export async function GET() {
const data = await getOrderConfirmationContent();
return Response.json({ ...data });
}