nuxt
Version:
13 lines (12 loc) • 347 B
JavaScript
import { defineNuxtPlugin } from "../nuxt.js";
import { createDebugger } from "hookable";
//#region src/app/plugins/debug-hooks.ts
const plugin = /* @__PURE__ */ defineNuxtPlugin({
name: "nuxt:debug:hooks",
enforce: "pre",
setup(nuxtApp) {
createDebugger(nuxtApp.hooks, { tag: "nuxt-app" });
}
});
//#endregion
export { plugin as default };