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.

10 lines (9 loc) 253 B
import { createDebugger } from "hookable"; import { defineNuxtPlugin } from "../nuxt.js"; export default defineNuxtPlugin({ name: "nuxt:debug:hooks", enforce: "pre", setup(nuxtApp) { createDebugger(nuxtApp.hooks, { tag: "nuxt-app" }); } });