From b1311f07362865e8c095b39279a496394fd3f10f Mon Sep 17 00:00:00 2001 From: Forms Dev Date: Thu, 7 Dec 2023 17:11:57 +0530 Subject: [PATCH] remove local from middleware --- resources/js/router/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/router/index.js b/resources/js/router/index.js index 0acc357..1e5eef5 100644 --- a/resources/js/router/index.js +++ b/resources/js/router/index.js @@ -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 })