개요
진행 상황
-
next.js 미들웨어
✓ Starting… ⨯ Nested Middleware is not allowed, found: pages/_middleware Please move your code to a single file at \src\middleware instead. Read More - https://nextjs.org/docs/messages/nested-middleware ✓ Ready in 1881ms
- 에러

- site, admin 폴더 안옮기고 middleware만 작성해서
- middleware matcher 업데이트
/**
* 미들웨어 설정입니다.
* 미들웨어가 실행되어야 하는 경로를 지정합니다.
* 정적 자산, 이미지, API 라우트와 같은 일반적인 경로는 제외합니다.
* @property {string[]} matcher - 일치시킬 경로 패턴의 배열입니다.
*/
export const config = {
matcher: [
'/((?!api|robot-check|manifest.json|_next/static|_next/image|favicon.ico|login|.*\\..*).*)',
],
};

