2022-10-15 10:56:15 +00:00
|
|
|
import { createDebugger } from 'hookable'
|
2023-02-09 06:26:41 +00:00
|
|
|
import { defineNuxtPlugin } from '#app/nuxt'
|
2022-10-15 10:56:15 +00:00
|
|
|
|
|
|
|
export default defineNuxtPlugin((nuxtApp) => {
|
|
|
|
createDebugger(nuxtApp.hooks, { tag: 'nuxt-app' })
|
|
|
|
})
|