Skip to content

Commit adc0a0e

Browse files
i18n(ko-KR): update authentication.mdx (#12327)
Co-authored-by: Yan <[email protected]>
1 parent e08a3e6 commit adc0a0e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/content/docs/ko/guides/authentication.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Auth.js는 프레임워크에 구애받지 않는 인증 솔루션입니다. Ast
2525

2626
### 설치
2727

28-
선호하는 패키지 관리자로 `astro add` 명령을 사용하여 `auth-astro` 통합을 추가하세요.
28+
선호하는 패키지 관리자의 `astro add` 명령어를 사용하여, 요청 시 렌더링을 위한 [서버 어댑터](/ko/guides/on-demand-rendering/#서버-어댑터)가 구성된 Astro 프로젝트에 `auth-astro` 통합을 추가하세요.
2929

3030
<PackageManagerTabs>
3131
<Fragment slot="npm">
@@ -69,12 +69,13 @@ Auth.js는 프레임워크에 구애받지 않는 인증 솔루션입니다. Ast
6969

7070
그런 다음 `integrations` 속성을 사용하여 `astro.config.*` 파일에 통합을 적용합니다.
7171

72-
```ts title="astro.config.mjs" ins={2,6}
72+
```ts title="astro.config.mjs" ins={2,7}
7373
import { defineConfig } from 'astro/config';
7474
import auth from 'auth-astro';
7575

7676
export default defineConfig({
7777
// ...
78+
adapter: netlify(),
7879
integrations: [auth()],
7980
});
8081
```

0 commit comments

Comments
 (0)