Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(ja): Update tutorial for v3 #4415

Merged
Merged
Show file tree
Hide file tree
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/tutorial/1-setup/1.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -29,20 +29,20 @@ Astroプロジェクトを作成し、サイトをビルド、開発、テスト

### Node.js

Astroをシステム上で実行するには、バージョン`v16.12.0`以降の[**Node.js**](https://nodejs.org/ja/)をインストールする必要があります。
Astroをシステム上で実行するには、バージョン`v18.14.1`以降の[**Node.js**](https://nodejs.org/ja/)をインストールする必要があります。

互換性のあるバージョンがインストール済みかどうかを確認するには、ターミナルで次のコマンドを実行します。

```sh
node -v

// 出力例
v16.14.0
v18.14.1
```

コマンドが`v16.12.0`よりも高いバージョン番号を返していれば、問題ありません!
コマンドが`v18.14.1`よりも高いバージョン番号を返していれば、問題ありません!

コマンドが`'node'コマンドが見つかりません`のようなエラーメッセージを返すか、バージョン番号が`v16.12.0`よりも低い場合は、[互換性のあるバージョンのNode.jsのインストール](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)が必要です。
コマンドが`'node'コマンドが見つかりません`のようなエラーメッセージを返すか、バージョン番号が`v18.14.1`よりも低い場合は、[互換性のあるバージョンのNode.jsのインストール](https://docs.npmjs.com/downloading-and-installing-node-js-and-npm)が必要です。

### コードエディタ

Expand Down
2 changes: 1 addition & 1 deletion src/content/docs/ja/tutorial/5-astro-api/4.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Astroは、ウェブサイトにRSSフィードを素早く追加するための

import rss, { pagesGlobToRssItems } from '@astrojs/rss';

export async function get() {
export async function GET() {
return rss({
title: 'Astro学習者 | ブログ',
description: 'Astroを学ぶ旅',
Expand Down