mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 00:53:55 +00:00
23 lines
544 B
JavaScript
23 lines
544 B
JavaScript
export default function () {
|
|
let ctr = 1
|
|
|
|
// Add hook for module
|
|
this.nuxt.hook('modules:done', (moduleContainer) => {
|
|
this.nuxt.__module_hook = moduleContainer && ctr++
|
|
})
|
|
|
|
// Add hook for renderer
|
|
this.nuxt.hook('render:done', (renderer) => {
|
|
this.nuxt.__renderer_hook = renderer && ctr++
|
|
})
|
|
|
|
// Add hook for build
|
|
this.nuxt.hook('build:done', (builder) => {
|
|
this.nuxt.__builder_hook = builder && ctr++
|
|
})
|
|
|
|
this.nuxt.hook('build:done', (builder) => {
|
|
this.nuxt.__builder_plugin = builder && ctr++
|
|
})
|
|
}
|