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