In Nuxt 2 it was in the plugin context: ```ts export default function somePlugin(({ beforeNuxtRender }) => {}) ``` In Nuxt 3 we have hooks, but there doesn't seem to be the right hook for that? ```ts export default defineNuxtPlugin((nuxt) => { nuxt.hook() }) ```