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 netlify.mdx #7437

Merged
merged 3 commits into from
Mar 18, 2024
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: 5 additions & 3 deletions src/content/docs/ja/guides/deploy/netlify.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ description: NetlifyでAstroサイトをウェブにデプロイする方法。
type: deploy
i18nReady: true
---
import ReadMore from '~/components/ReadMore.astro'

[Netlify](https://netlify.com)は、ウェブアプリケーションや静的ウェブサイトのためのホスティングとサーバーレスバックエンドサービスを提供しています。Astroサイトは全てNetlifyでホストできます!

このガイドは、NetlifyのウェブサイトUIまたはNetlifyのCLIを介してデプロイするための手順を説明しています。
Expand Down Expand Up @@ -38,7 +40,7 @@ npx astro add netlify

```js title="astro.config.mjs" ins={2, 5-6}
import { defineConfig } from 'astro/config';
import netlify from '@astrojs/netlify/functions';
import netlify from '@astrojs/netlify';

export default defineConfig({
output: 'server',
Expand Down Expand Up @@ -96,7 +98,7 @@ GitHub、GitLab、BitBucket、またはAzure DevOpsにプロジェクトがあ
publish = "dist"
```

📚 さらに詳しい情報は、Netlifyのブログの["既存のAstroのGitリポジトリをデプロイ"](https://www.netlify.com/blog/how-to-deploy-astro/#deploy-an-existing-git-repository-to-netlify)を参照してください。
<ReadMore>さらに詳しい情報は、Netlifyのブログの["既存のAstroのGitリポジトリをデプロイ"](https://www.netlify.com/blog/how-to-deploy-astro/#deploy-an-existing-git-repository-to-netlify)を参照してください。</ReadMore>


### CLIを使ったデプロイ方法
Expand All @@ -120,7 +122,7 @@ GitHub、GitLab、BitBucket、またはAzure DevOpsにプロジェクトがあ

CLIはリポジトリにデプロイキーを追加します。そのため、`git push`するたびにNetlifyでサイトが自動で再ビルドされます。

📚 さらに詳しい情報は、Netlifyのブログの[Netlify CLIを使ったAstroサイトのデプロイ](https://www.netlify.com/blog/how-to-deploy-astro/#link-your-astro-project-and-deploy-using-the-netlify-cli)を参照してください。
<ReadMore>さらに詳しい情報は、Netlifyのブログの[Netlify CLIを使ったAstroサイトのデプロイ](https://www.netlify.com/blog/how-to-deploy-astro/#link-your-astro-project-and-deploy-using-the-netlify-cli)を参照してください。</ReadMore>

### Node.jsバージョンの設定

Expand Down
Loading