remove local from middleware

This commit is contained in:
Forms Dev 2023-12-07 17:11:57 +05:30
parent 496ef93353
commit b1311f0736
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ import { useAppStore } from '../stores/app'
import { defineComponent, nextTick } from 'vue'
// The middleware for every page of the application.
const globalMiddleware = ['locale', 'check-auth', 'custom-domains']
const globalMiddleware = ['check-auth', 'custom-domains']
// Load middleware modules dynamically.
const requireContext = import.meta.glob('../middleware/**/*.js', { eager: true })