Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 2 additions & 18 deletions src/content/docs/ko/reference/routing-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ const { page } = Astro.props;
**타입:** `string | undefined`
</p>

이전 페이지의 URL을 가져옵니다( 페이지인 경우 `undefined`). [`base`](/ko/reference/configuration-reference/#base)에 대한 값이 설정된 경우, URL은 해당 값으로 시작합니다.
이전 페이지의 URL을 가져옵니다(1 페이지인 경우 `undefined`). [`base`](/ko/reference/configuration-reference/#base)에 대한 값이 설정된 경우, URL에 기본 경로가 추가됩니다.

##### `page.url.next`

Expand All @@ -308,23 +308,7 @@ const { page } = Astro.props;
**타입:** `string | undefined`
</p>

다음 페이지의 URL을 가져옵니다(마지막 페이지인 경우 `undefined`). [`base`](/ko/reference/configuration-reference/#base)에 대한 값이 설정된 경우, URL은 해당 값으로 시작합니다.

##### `page.url.first`

<p>
**타입:** `string`
</p>

첫 페이지의 URL을 가져옵니다(첫 페이지인 경우 `undefined`). [`base`](/ko/reference/configuration-reference/#base)에 대한 값이 설정된 경우, URL은 해당 값으로 시작합니다.

##### `page.url.last`

<p>
**타입:** `string`
</p>

마지막 페이지의 URL을 가져옵니다(마지막 페이지인 경우 `undefined`). [`base`](/ko/reference/configuration-reference/#base)에 대한 값이 설정된 경우, URL은 해당 값으로 시작합니다.
다음 페이지의 URL을 가져옵니다(더 이상 페이지가 없는경우 `undefined`). [`base`](/ko/reference/configuration-reference/#base)에 대한 값이 설정된 경우, URL에 기본 경로가 추가됩니다.

##### `page.url.first`

Expand Down