add admin pages layouts

This commit is contained in:
smanylov
2026-01-22 17:30:46 +07:00
parent 2de0cc444d
commit e406833057
22 changed files with 3533 additions and 256 deletions
+1 -2
View File
@@ -10,7 +10,6 @@ export default async function proxy(request: NextRequest) {
if (
path.startsWith('/_next') ||
path.includes('/api/') ||
path.includes('.')
) {
return NextResponse.next()
@@ -26,5 +25,5 @@ export default async function proxy(request: NextRequest) {
}
export const config = {
matcher: ['/((?!api|_next/static|_next/image|.*\\.png$).*)']
matcher: ['/((?!_next/static|_next/image|.*\\.png$).*)']
};