mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-25 01:49:03 +00:00
5 lines
158 B
TypeScript
5 lines
158 B
TypeScript
|
export default defineNuxtRouteMiddleware((to) => {
|
||
|
to.meta.globalMiddleware = to.meta.globalMiddleware || []
|
||
|
to.meta.globalMiddleware.push('b.global')
|
||
|
})
|