NuxtN
Nuxt3y ago
1 reply
oemer

What is the equivalent to `beforeNuxtRender` in Nuxt 3?

In Nuxt 2 it was in the plugin context:
export default function somePlugin(({ beforeNuxtRender }) => {})


In Nuxt 3 we have hooks, but there doesn't seem to be the right hook for that?
export default defineNuxtPlugin((nuxt) => {
  nuxt.hook()
})
Was this page helpful?