import { getPayload } from 'payload'; /** * getPayloadHMR is no longer preferred. * You can now use in all contexts: * ```ts * import { getPayload } from 'payload' * ``` * @deprecated */ export const getPayloadHMR = async options => { const result = await getPayload(options); result.logger.warn("Deprecation warning: getPayloadHMR is no longer preferred. You can now use `import { getPayload } from 'payload' in all contexts."); return result; }; //# sourceMappingURL=getPayloadHMR.js.map