mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-29 00:52:01 +00:00
7 lines
191 B
TypeScript
7 lines
191 B
TypeScript
import { createDebugger } from 'hookable'
|
|
import { defineNuxtPlugin } from '#app/nuxt'
|
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
createDebugger(nuxtApp.hooks, { tag: 'nuxt-app' })
|
|
})
|