mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-30 01:17:16 +00:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { createDebugger } from 'hookable'
|
|
import { defineNuxtPlugin } from '#app/nuxt'
|
|
|
|
export default defineNuxtPlugin({
|
|
name: 'nuxt:debug',
|
|
enforce: 'pre',
|
|
setup (nuxtApp) {
|
|
createDebugger(nuxtApp.hooks, { tag: 'nuxt-app' })
|
|
}
|
|
})
|