Skip to content

Commit 1aac5b2

Browse files
jsparkdevdreyfus92
andauthored
i18n(ko-KR): update node.mdx (#11556)
Co-authored-by: Paul Valladares <[email protected]>
1 parent 8c59986 commit 1aac5b2

File tree

1 file changed

+7
-6
lines changed
  • src/content/docs/ko/guides/integrations-guide

1 file changed

+7
-6
lines changed

src/content/docs/ko/guides/integrations-guide/node.mdx

+7-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
type: integration
33
title: '@astrojs/node'
4-
description: '@astrojs/node SSR 어댑터를 사용하여 Astro 프로젝트를 배포하는 방법을 알아보세요.'
4+
description: '@astrojs/node 어댑터를 사용하여 Astro 프로젝트를 배포하는 방법을 알아보세요.'
55
sidebar:
66
label: Node
77
githubIntegrationURL: 'https://github.com/withastro/astro/tree/main/packages/integrations/node/'
@@ -11,7 +11,7 @@ i18nReady: true
1111

1212
import PackageManagerTabs from '~/components/tabs/PackageManagerTabs.astro'
1313

14-
이 어댑터를 사용하면 Astro가 [요청 시 렌더링되는 라우트](/ko/guides/on-demand-rendering/) Node 대상에 배포할 수 있습니다.
14+
이 어댑터를 사용하면 Astro가 [서버 아일랜드](/ko/guides/server-islands/), [액션](/ko/guides/actions/), [세션](/ko/guides/sessions/)을 포함하여 [요청 시 렌더링되는 라우트 및 기능](/ko/guides/on-demand-rendering/) Node 대상에 배포할 수 있습니다.
1515

1616
Astro를 정적 사이트 빌더로 사용하는 경우에는 어댑터가 필요하지 않습니다.
1717

@@ -23,7 +23,7 @@ Astro를 정적 사이트 빌더로 사용하는 경우에는 어댑터가 필
2323

2424
Astro에는 공식 통합 설정을 자동화하는 `astro add` 명령이 포함되어 있습니다. 원하는 경우 대신 [통합을 수동으로 설치](#수동-설치)할 수 있습니다.
2525

26-
`astro add` 명령을 사용하여 Astro 프로젝트에서 SSR을 활성화하려면 Node 어댑터를 추가하세요.
26+
`astro add` 명령을 사용하여 Astro 프로젝트에서 요청 시 렌더링을 활성화하려면 Node 어댑터를 추가하세요.
2727
그러면 `@astrojs/node`가 설치되고 `astro.config.*` 파일이 한 번에 적절하게 변경됩니다.
2828

2929
<PackageManagerTabs>
@@ -44,6 +44,8 @@ Astro에는 공식 통합 설정을 자동화하는 `astro add` 명령이 포함
4444
</Fragment>
4545
</PackageManagerTabs>
4646

47+
이제 [페이지별로 요청 시 렌더링](/ko/guides/on-demand-rendering/#요청-시-렌더링-활성화)을 활성화하거나, [기본적으로 모든 페이지를 서버 렌더링](/ko/guides/on-demand-rendering/#server-모드)하도록 빌드 출력 구성을 `output: 'server'`로 설정할 수 있습니다.
48+
4749
### 수동 설치
4850

4951
먼저, 선호하는 패키지 관리자를 사용하여 프로젝트의 종속성에 Node 어댑터를 추가하세요.
@@ -66,14 +68,13 @@ Astro에는 공식 통합 설정을 자동화하는 `astro add` 명령이 포함
6668
</Fragment>
6769
</PackageManagerTabs>
6870

69-
그런 다음 어댑터와 원하는 [요청 시 렌더링 모드](/ko/guides/on-demand-rendering/)`astro.config.*` 파일에 추가하세요.
71+
그런 다음 `astro.config.*` 파일에 어댑터를 추가합니다.
7072

71-
```js title="astro.config.mjs" ins={2,5-8}
73+
```js title="astro.config.mjs" ins={2,5-7}
7274
import { defineConfig } from 'astro/config';
7375
import node from '@astrojs/node';
7476

7577
export default defineConfig({
76-
output: 'server',
7778
adapter: node({
7879
mode: 'standalone',
7980
}),

0 commit comments

Comments
 (0)