Files
mintel.me/apps/web/app/(payload)/actions.ts
Marc Mintel 90856da773
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
fix(ci): replace ts-expect-error with ts-ignore for importMap
2026-03-02 18:20:16 +01:00

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,
});
};