summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/src/pages/ja/quick-start.md20
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/src/pages/ja/quick-start.md b/docs/src/pages/ja/quick-start.md
index a0e1d9773..b3171d5c5 100644
--- a/docs/src/pages/ja/quick-start.md
+++ b/docs/src/pages/ja/quick-start.md
@@ -24,9 +24,9 @@ npm run dev
npm run build
```
-はじめてAstroをインストールして使用する場合は、[インストールガイド](/installation)をご覧ください。
+はじめて Astro をインストールして使用する場合は、[インストールガイド](/installation)をご覧ください。
-サンプルを見ながら学びたいという方は、GitHubにある[全サンプル](https://github.com/snowpackjs/astro/tree/main/examples)をご覧ください。 `npm init astro -- --template "EXAMPLE_NAME"` を実行すれば、これらのサンプルをローカルにチェックアウトできます。
+サンプルを見ながら学びたいという方は、GitHub にある[全サンプル](https://github.com/snowpackjs/astro/tree/main/examples)をご覧ください。 `npm init astro -- --template "EXAMPLE_NAME"` を実行すれば、これらのサンプルをローカルにチェックアウトできます。
## プロジェクトの開始
@@ -36,7 +36,7 @@ npm run build
npm run dev
```
-これでAstroは、 [http://localhost:3000](http://localhost:3000)で、アプリケーションの提供を開始します。このURLをブラウザで開くと、Astroの「Hello, World」が表示されるはずです。
+これで Astro は、 [http://localhost:3000](http://localhost:3000)で、アプリケーションの提供を開始します。この URL をブラウザで開くと、Astro の「Hello, World」が表示されるはずです。
サーバーは、あなたの`src/`ディレクトリにあるファイルの変更を常に監視しているので、開発中に変更してもアプリケーションを再起動する必要はありません。
@@ -48,26 +48,26 @@ npm run dev
npm run build
```
-このコマンドを実行すると、Astroはサイトを構築し、ディスクに直接保存するように指示します。これで、`dist/`ディレクトリにアプリケーションができあがりました。
+このコマンドを実行すると、Astro はサイトを構築し、ディスクに直接保存するように指示します。これで、`dist/`ディレクトリにアプリケーションができあがりました。
## プロジェクトのデプロイ
-Astroのサイトは静的なので、お好みのホストにデプロイできます。
+Astro のサイトは静的なので、お好みのホストにデプロイできます。
- [AWS S3 bucket](https://aws.amazon.com/s3/)
- [Google Firebase](https://firebase.google.com/)
- [Netlify](https://www.netlify.com/)
- [Vercel](https://vercel.com/)
-- もっと詳しいAstroのデプロイについては、[デプロイガイド](/guides/deploy)をご覧ください。
+- もっと詳しい Astro のデプロイについては、[デプロイガイド](/guides/deploy)をご覧ください。
## 次のステップ
これで開発を始める準備が整いました。
-次のステップでは、Astroの仕組みをより深く理解することをオススメします。これらのドキュメントを探索することを検討してみてください。
+次のステップでは、Astro の仕組みをより深く理解することをオススメします。これらのドキュメントを探索することを検討してみてください。
-📚 Astroのプロジェクト構造については、[プロジェクト構造ガイド](/core-concepts/project-structure)をご覧ください。
+📚 Astro のプロジェクト構造については、[プロジェクト構造ガイド](/core-concepts/project-structure)をご覧ください。
-📚 Astroのコンポーネント構文については、[Astroコンポーネントガイド](/core-concepts/astro-components)を参照してください。
+📚 Astro のコンポーネント構文については、[Astro コンポーネントガイド](/core-concepts/astro-components)を参照してください。
-📚 Astroのファイルベースのルーティングについては、[ルーティングガイド](/core-concepts/astro-pages)を参照してください。
+📚 Astro のファイルベースのルーティングについては、[ルーティングガイド](/core-concepts/astro-pages)を参照してください。
e04 <daniel@floatingpixels.com> 2022-10-06Document Lit's limitations in SSR (#4999)Gravatar Matthew Phillips 1-0/+27 2022-10-05Remove early return from SSR example (#4993)Gravatar Matthew Phillips 1-2/+0 2022-10-05[ci] formatGravatar matthewp 3-7/+5 2022-10-05Yield out potentional slot instructions when rendering dynamic tags (#4981)Gravatar Matthew Phillips 11-32/+132 * Yield out potentional slot instructions when rendering dynamic tags * Adding a changeset * yield instead of return * Handle the fact that renderComponent returns an iterable * Only yield out html once 2022-10-05Upgrade Astro compiler to 0.26.0 (#4990)Gravatar Matthew Phillips 3-5/+10 * Upgrade Astro compiler * Add changeset 2022-10-05Fix failing e2e test (#4983)Gravatar Bjorn Lu 2-1/+4 2022-10-04Updating sponsors list in README (#4979)Gravatar Tony Sullivan 12-48/+176 * updating all org and project sponsors * fix: copy/paste errors * sponsors should be in one row * using a logo cloud image for now * updating sponsors message to match other repos 2022-10-04[ci] formatGravatar matthewp 4-7/+11 2022-10-04Refactor hydration path handling (#4918)Gravatar Bjorn Lu 14-44/+137 * Refactor hydration path handling * Remove old code * Fix jsx strip * Postprocess fix * Handle jsx to tsx stuff * Skip bigint tests * Fix deno * Try fix windows * Fix windows * Add more comments 2022-10-04fix: import.meta.env.BASE_URL will be '/' in client loaded component on dev ↵Gravatar 董雨航 9-0/+82 mode (#4886) 2022-10-04fix object styles not escaped (#4887)Gravatar Calvin Liang 8-2/+71 * fix object styles not escaped * fix `shouldEscape` not passed down * add tests * fix package name * fix pnpm-lock * add changeset 2022-10-04closes #4633 (#4977)Gravatar Tony Sullivan 3-3/+11 * closes #4633 * chore: add changeset 2022-10-04[ci] update lockfile (#4946)Gravatar Fred K. Bot 1-150/+159 Co-authored-by: FredKSchott <FredKSchott@users.noreply.github.com> 2022-10-04[ci] formatGravatar matthewp 1-4/+4 2022-10-04Update config base type description (#4954)Gravatar Zihan Chen 1-1/+10 2022-10-04Support Astro.slots.render for mdx (#4973)Gravatar Bjorn Lu 8-2/+69 * Support Astro.slots.render for mdx * Remove extra imports 2022-10-03[ci] release (#4968)astro@1.4.4Gravatar Fred K. Bot 28-57/+58 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-10-03Fix regression in rendering strings (#4967)Gravatar Matthew Phillips 2-2/+9 2022-10-03[ci] formatGravatar matthewp 1-1/+2 2022-10-03Adds a better test for benchmarking (#4966)Gravatar Matthew Phillips 2-7/+77 * Rendering: speed up rendering of HTML chunks * Add a changeset * Remove the fix * remove the changeset 2022-10-03Benchmark action: provide the PR number (#4964)Gravatar Matthew Phillips 1-0/+1 * Testing benchmarking * Provide the PR number 2022-10-03Build packages in the benchmark action (#4962)Gravatar Matthew Phillips 1-0/+11 * Just a test * Run the build * Add turbo stuff 2022-10-03Run benchmarks on comment (#4960)Gravatar Matthew Phillips 2-1/+85 * Run benchmarks on !bench command * Re-enable main 2022-10-03[ci] release (#4957)astro@1.4.3@astrojs/mdx@0.11.4Gravatar Fred K. Bot 32-70/+69 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-10-03[ci] formatGravatar matthewp 5-6/+6 2022-10-03Improve rendering perf (#4956)Gravatar Matthew Phillips 8-31/+73 * Improve rendering perf * Adding a changeset * Disable eslint warning 2022-10-03Suppress eslint warnings (#4953)Gravatar Bjorn Lu 3-3/+14 2022-10-03[ci] formatGravatar bluwy 1-1/+1 2022-10-03Refactor ViteConfigWithSSR type (#4952)Gravatar Bjorn Lu 7-20/+20 2022-10-01[ci] release (#4945)@astrojs/image@0.9.11.3.0Gravatar Fred K. Bot 3-6/+7 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-09-30Astro image cache dependency fix scottaw66 (#4944)Gravatar Scott Willsey 3-3/+7 * Moves http-cache-semantics from dev dependency to dependency * Pull request for astro image http-cache-semantics dependency 2022-09-30[ci] release (#4943)astro@1.4.2Gravatar Fred K. Bot 29-60/+58 Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> 2022-09-30[ci] formatGravatar natemoo-re 1-1/+1 2022-09-30Convert HTMLString to regular string, preventing hydration script fro… (#4932)Gravatar Matthew Phillips 2-1/+6 * Convert HTMLString to regular string, preventing hydration script from being missing * Add a changeset 2022-10-01Fix missing language tag on README code block (#4940)Gravatar Chris Swithinbank 1-1/+1 2022-09-30[ci] formatGravatar natemoo-re 2-2/+2 2022-09-30P5: fix MDX memory leak (#4939)Gravatar Nate Moore 10-1/+84 * fix(astro): tag jsx vnodes with renderer so errors are properly handled * chore: fix missing package in test Co-authored-by: Nate Moore <nate@astro.build> 2022-09-30chore: delete .stackblitzrc files from examples (#4922)Gravatar Nate Moore 22-132/+0 Co-authored-by: Nate Moore <nate@astro.build>