Skip to content

Commit

Permalink
i18n(ko-KR): update cloudflare.mdx (#10626)
Browse files Browse the repository at this point in the history
Co-authored-by: Armand Philippot <[email protected]>
  • Loading branch information
jsparkdev and ArmandPhilippot authored Jan 7, 2025
1 parent 9a31b03 commit 1deebee
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/content/docs/ko/guides/integrations-guide/cloudflare.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ Cloudflare 런타임이 `astro dev`에 추가되는지 여부와 방법을 결
`persist` 속성은 바인딩 데이터가 지속되는지 여부와 위치를 정의합니다. `true`는 Wrangler에서 사용하는 것과 동일한 위치를 기본값으로 지정하므로 둘 간에 데이터를 공유할 수 있습니다. `false`인 경우 데이터가 파일 시스템에 저장되지 않고, 파일 시스템에서 읽을 수 없게 됩니다.

:::note
`wrangler``--persist-to` 옵션은 내부적으로 `v3`라는 하위 디렉터리를 추가하지만 `@astrojs/cloudflare` `persist` 속성은 그렇지 않습니다. 예를 들어 `wrangler dev --persist-to ./my-directory`를 실행하는 것과 동일한 위치를 재사용하려면 `persist: "./my-directory/v3"`을 지정해야 합니다.
`wrangler``--persist-to` 옵션은 내부적으로 `v3`라는 하위 디렉터리를 추가하지만 `@astrojs/cloudflare` `persist` 속성은 그렇지 않습니다. 예를 들어 `wrangler dev --persist-to ./my-directory`를 실행하는 것과 동일한 위치를 재사용하려면 `persist: { path: "./my-directory/v3" }`을 지정해야 합니다.
:::

다음 구성은 개발 서버를 실행할 때 Cloudflare 런타임을 활성화하고 `wrangler.json` 구성 파일 (실험적)을 사용하는 예를 보여줍니다. 또한 파일 시스템에 데이터를 유지하기 위한 사용자 정의 위치를 ​​지정합니다.
Expand All @@ -164,7 +164,9 @@ export default defineConfig({
enabled: true,
configPath: 'wrangler.json',
experimentalJsonConfig: true,
persist: './.cache/wrangler/v3',
persist: {
path: './.cache/wrangler/v3'
},
},
}),
});
Expand Down

0 comments on commit 1deebee

Please sign in to comment.