This commit is contained in:
Julian Tölle 2021-05-15 19:58:18 +02:00
parent 59a17fc303
commit efb8af0e47
9 changed files with 72 additions and 13 deletions

View file

@ -0,0 +1,7 @@
import type { RequestHandler } from "@sveltejs/kit";
export const post: RequestHandler = async () => {
console.log(import.meta.env.VITE_PAYPAL_CLIENT_ID);
return { body: {} };
};