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