diff --git a/pages/docs/app/building-your-application/routing/middleware.mdx b/pages/docs/app/building-your-application/routing/middleware.mdx index 248a280..e28049e 100644 --- a/pages/docs/app/building-your-application/routing/middleware.mdx +++ b/pages/docs/app/building-your-application/routing/middleware.mdx @@ -165,7 +165,7 @@ export const config = { 3. 명명된 매개변수( `:`로 시작)에 수정자를 가질 수 있습니다: `/about/:path*`는 `*`이 *0개 이상*이므로 `/about/a/b/c`와 일치합니다. `?`는 _0개 또는 1개_, `+`는 _1개 이상_ 4. 괄호로 둘러싸인 정규식을 사용할 수 있습니다: `/about/(.*)`는 `/about/:path*`와 동일합니다 -자세한 내용은 [path-to-regexp](https://github.com/pillarjs/path-to-regexp#path-to-regexp- +자세한 내용은 [path-to-regexp](https://github.com/pillarjs/path-to-regexp#path-to-regexp) 1. 문서를 참조하세요.