UNPKG

nuxt

Version:

Nuxt is a free and open-source framework with an intuitive and extendable way to create type-safe, performant and production-grade full-stack web applications and websites with Vue.js.

13 lines (12 loc) 347 B
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 };