@scayle/storefront-nuxt
Version:
Nuxt integration for the SCAYLE Commerce Engine and Storefront API
17 lines (16 loc) • 471 B
TypeScript
import type { Log } from '@scayle/storefront-core';
declare module 'h3' {
interface H3EventContext {
$log: Log;
}
}
/**
* Nitro plugin to initialize and inject a logger instance into the request context.
*
* @param nitroApp The nitro app instance.
*
* @see https://nitro.build/guide/configuration#runtime-configuration
* @see https://nitro.build/guide/plugins
*/
declare const _default: import("nitropack").NitroAppPlugin;
export default _default;