Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/content/docs/ja/guides/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ Luciaは、フレームワークに依存しないセッションベースの認
### 使い方

:::tip
Luciaの充実したAstroチュートリアルの1つに従って、[ユーザー名とパスワードの認証](https://lucia-auth.com/tutorials/username-and-password/astro)または[GitHub OAuth](https://lucia-auth.com/tutorials/username-and-password/astro)をAstroプロジェクトに追加します。
Luciaの充実したAstroチュートリアルの1つに従って、[ユーザー名とパスワードの認証](https://lucia-auth.com/tutorials/username-and-password/astro)または[GitHub OAuth](https://lucia-auth.com/tutorials/github-oauth/astro)をAstroプロジェクトに追加します。
:::

### 次のステップ
Expand Down Expand Up @@ -91,17 +91,17 @@ Auth.jsは、フレームワークに依存しない認証ソリューション
<PackageManagerTabs>
<Fragment slot="npm">
```shell
npm install auth-astro
npm install auth-astro @auth/core@^0.18.6
```
</Fragment>
<Fragment slot="pnpm">
```shell
pnpm add auth-astro @auth/core
pnpm add auth-astro @auth/core@^0.18.6
```
</Fragment>
<Fragment slot="yarn">
```shell
yarn add auth-astro
yarn add auth-astro @auth/core@^0.18.6
```
</Fragment>
</PackageManagerTabs>
Expand Down