Skip to content

Commit

Permalink
Merge branch 'main' into 4.14-1
Browse files Browse the repository at this point in the history
  • Loading branch information
yanthomasdev authored Aug 21, 2024
2 parents aed8f02 + 5106d07 commit 0cdf186
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/content/docs/en/reference/configuration-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1725,7 +1725,7 @@ export const collections = { blog, dogs };
```

:::note
Loaders will not automatically [exclude files prefaced with an `_`](/en/guides/routing/#excluding-pages). Use a regular expression such as `pattern: '**\/[^_]*.md` in your loader to ignore these files.
Loaders will not automatically [exclude files prefaced with an `_`](/en/guides/routing/#excluding-pages). Use a regular expression such as `pattern: '**\/[^_]*.md'` in your loader to ignore these files.
:::

#### Querying and rendering with the Content Layer API
Expand Down
6 changes: 6 additions & 0 deletions src/content/docs/ko/guides/integrations-guide/vercel.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -384,6 +384,12 @@ export default defineConfig({

### 함수 번들링 구성

:::caution[사용되지 않음]
`functionPerRoute` 옵션은 더 이상 사용되지 않으며 Astro 5에서 완전히 제거될 예정입니다. 또한 이 옵션은 i18n 도메인 및 요청 리라이 등 일부 Astro 기능과 호환되지 않습니다.

`functionPerRoute: true`를 활성화한 경우, 가능한 한 빨리 이 구성 옵션을 제거하는 것이 좋습니다.
:::

Vercel 어댑터는 기본적으로 모든 경로를 단일 함수로 결합합니다.

`functionPerRoute` 옵션을 사용하여 빌드를 각 경로에 대한 개별 함수로 나눌 수 있습니다. 이렇게 하면 각 함수의 크기가 줄어들어 개별 함수의 크기 제한을 초과할 가능성이 줄어듭니다. 또한, 코드 시작이 더 빠릅니다.
Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ko/reference/configuration-reference.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1778,7 +1778,7 @@ export const collections = { blog, dogs };
```

:::note
로더는 [`_`로 시작하는 파일을 자동으로 제외](/ko/guides/routing/#페이지-제외)하지 않습니다. 이러한 파일을 제외하려면 `pattern: '**\/[^_]*.md`와 같은 정규 표현식을 사용하세요.
로더는 [`_`로 시작하는 파일을 자동으로 제외](/ko/guides/routing/#페이지-제외)하지 않습니다. 이러한 파일을 제외하려면 `pattern: '**\/[^_]*.md'`와 같은 정규 표현식을 사용하세요.
:::

#### Content Layer API로 쿼리 및 렌더링하기
Expand Down

0 comments on commit 0cdf186

Please sign in to comment.