UNPKG

inngest

Version:

Official SDK for Inngest.com. Inngest is the reliability layer for modern applications. Inngest combines durable execution, events, and queues into a zero-infra platform with built-in observability.

25 lines (23 loc) 546 B
const require_h3 = require('./h3.cjs'); //#region src/nuxt.ts /** * The name of the framework, used to identify the framework in Inngest * dashboards and during testing. */ const frameworkName = "nuxt"; /** * In Nuxt 3, serve and register any declared functions with Inngest, making * them available to be triggered by events. * * @public */ const serve = (options) => { return require_h3.serve({ ...options, frameworkName }); }; //#endregion exports.frameworkName = frameworkName; exports.serve = serve; //# sourceMappingURL=nuxt.cjs.map