Skip to content

Commit 3881298

Browse files
authored
Merge branch 'master' into chore/update-basic-features-data-fetching-get-static-propss
2 parents 0c16d5a + baaac2d commit 3881298

File tree

4 files changed

+14
-2
lines changed

4 files changed

+14
-2
lines changed

.all-contributorsrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -407,6 +407,15 @@
407407
"contributions": [
408408
"translation"
409409
]
410+
},
411+
{
412+
"login": "TetsuyaNegishi",
413+
"name": "Tetsuya Negishi",
414+
"avatar_url": "https://avatars.githubusercontent.com/u/8405585?v=4",
415+
"profile": "https://github.com/TetsuyaNegishi",
416+
"contributions": [
417+
"translation"
418+
]
410419
}
411420
],
412421
"contributorsPerLine": 7,

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<!-- textlint-enable -->
44

55
<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
6-
[![All Contributors](https://img.shields.io/badge/all_contributors-43-orange.svg?style=flat-square)](#contributors)
6+
[![All Contributors](https://img.shields.io/badge/all_contributors-44-orange.svg?style=flat-square)](#contributors)
77
<!-- ALL-CONTRIBUTORS-BADGE:END -->
88

99
![reviewdog](https://github.com/Nextjs-ja-translation/Nextjs-ja-translation-docs/workflows/reviewdog/badge.svg)
@@ -146,6 +146,7 @@ Thanks to these wonderful people ([emoji key](https://allcontributors.org/docs/e
146146
</tr>
147147
<tr>
148148
<td align="center"><a href="http://piyopanman.com"><img src="https://avatars.githubusercontent.com/u/66374097?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Piyopanman</b></sub></a><br /><a href="#translation-Piyopanman" title="Translation">🌍</a></td>
149+
<td align="center"><a href="https://github.com/TetsuyaNegishi"><img src="https://avatars.githubusercontent.com/u/8405585?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Tetsuya Negishi</b></sub></a><br /><a href="#translation-TetsuyaNegishi" title="Translation">🌍</a></td>
149150
</tr>
150151
</table>
151152

docs/api-routes/dynamic-api-routes.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,8 @@ export default function handler(req, res) {
8484

8585
例えば、`pages/api/post/[[...slug]].js``/api/post``/api/post/a``/api/post/a/b` などに一致します。
8686

87+
`[...slug]` との主な違いは、パラメータを持たないルートもマッチすることです(上の例では `/api/post`)。
88+
8789
`query` オブジェクトは次のようになります:
8890

8991
```json

docs/basic-features/supported-browsers-features.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ IE11 の互換性に必要な polyfills を透過的に注入しています。
2020

2121
### サーバーサイド Polyfills
2222

23-
クライアント側での `fetch()` に加えて、Next.js は Node.js 環境でも `fetch()` の polyfills を行います。 サーバー側のコード (例えば `getStaticProps`) では、`isomorphic-unfetch``node-fetch` などの polyfills を使わずに `fetch()` を使用できます。
23+
クライアント側での `fetch()` に加えて、Next.js は Node.js 環境でも `fetch()` の polyfills を行います。 サーバー側のコード (例えば `getStaticProps `/ ` getServerSideProps`) では、`isomorphic-unfetch``node-fetch` などの polyfills を使わずに `fetch()` を使用できます。
2424

2525
### カスタム Polyfills
2626

0 commit comments

Comments
 (0)