File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
src/content/docs/ko/guides Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff 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 }
7373import { defineConfig } from ' astro/config' ;
7474import auth from ' auth-astro' ;
7575
7676export default defineConfig ({
7777 // ...
78+ adapter: netlify (),
7879 integrations: [auth ()],
7980});
8081```
You can’t perform that action at this time.
0 commit comments