Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 6s
Build & Deploy / 🧪 QA (push) Successful in 1m55s
Build & Deploy / 🏗️ Build (push) Successful in 11m18s
Build & Deploy / 🚀 Deploy (push) Successful in 22s
Build & Deploy / 🧪 Post-Deploy Verification (push) Failing after 2m46s
Build & Deploy / 🔔 Notify (push) Successful in 1s
14 lines
416 B
TypeScript
14 lines
416 B
TypeScript
"use server";
|
|
import { handleServerFunctions as payloadHandleServerFunctions } from "@payloadcms/next/layouts";
|
|
import config from "@payload-config";
|
|
// @ts-ignore - Payload generates this file during the build process
|
|
import { importMap } from "./admin/importMap";
|
|
|
|
export const handleServerFunctions = async (args: any) => {
|
|
return payloadHandleServerFunctions({
|
|
...args,
|
|
config,
|
|
importMap,
|
|
});
|
|
};
|