From e04520024133225f7baffa467db8d57809ca1a7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=EA=B9=80=EC=84=9D=EC=A7=84?= Date: Fri, 27 Sep 2024 00:22:01 +0900 Subject: [PATCH] =?UTF-8?q?[no-issue]=20fix:=20=EC=9E=98=EB=AA=BB=20?= =?UTF-8?q?=EC=9E=85=EB=A0=A5=EB=90=9C=20=EB=A7=81=ED=81=AC=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pages/docs/app/building-your-application/routing/middleware.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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. 문서를 참조하세요.