You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/pages/docs/environments/server-client-components.mdx
+15-15
Original file line number
Diff line number
Diff line change
@@ -114,19 +114,6 @@ Regarding performance, async functions and hooks can be used interchangeably. Th
114
114
115
115
Depending on your situation, you may need to handle internationalization in Client Components. While providing all messages to the client side is typically the easiest way to [get started](/docs/getting-started/app-router#layout) and a reasonable approach for many apps, you can be more selective about which messages are passed to the client side if you're interested in optimizing the performance of your app.
116
116
117
-
<Detailsid="client-messages-performance">
118
-
<summary>How does loading messages on the client side relate to performance?</summary>
119
-
120
-
Depending on the requirements for your app, you might want to monitor your [Core Web Vitals](https://web.dev/articles/vitals) to ensure your app meets your performance goals.
121
-
122
-
If you pass messages to `NextIntlClientProvider`, Next.js will emit them during the streaming render to the markup of the page so that they can be used by Client Components. This can contribute to the [total blocking time](https://web.dev/articles/tbt), which in turn can relate to the [interaction to next paint](https://web.dev/articles/inp) metric. If you're seeking to improve these metrics in your app, you can be more selective about which messages are passed to the client side.
123
-
124
-
However, as the general rule for optimization goes: Always measure before you optimize. If your app already performs well, there's no need for optimization.
125
-
126
-
Note that an automatic, compiler-driven approach for automatically splitting messages is being evaluated in [`next-intl#1`](https://github.com/amannn/next-intl/issues/1).
127
-
128
-
</Details>
129
-
130
117
There are several options for using translations from `next-intl` in Client Components, listed here in order of enabling the best performance:
131
118
132
119
### Option 1: Passing translations to Client Components
@@ -240,13 +227,13 @@ import FormSubmitButton from './FormSubmitButton';
<summary>How does loading messages on the client side relate to performance?</summary>
339
+
340
+
Depending on the requirements for your app, you might want to monitor your [Core Web Vitals](https://web.dev/articles/vitals) to ensure your app meets your performance goals.
341
+
342
+
If you pass messages to `NextIntlClientProvider`, Next.js will emit them during the streaming render to the markup of the page so that they can be used by Client Components. This can contribute to the [total blocking time](https://web.dev/articles/tbt), which in turn can relate to the [interaction to next paint](https://web.dev/articles/inp) metric. If you're seeking to improve these metrics in your app, you can be more selective about which messages are passed to the client side.
343
+
344
+
However, as the general rule for optimization goes: Always measure before you optimize. If your app already performs well, there's no need for optimization.
345
+
346
+
Note that an automatic, compiler-driven approach for automatically splitting messages is being evaluated in [`next-intl#1`](https://github.com/amannn/next-intl/issues/1).
347
+
348
+
</Details>
349
+
350
350
## Troubleshooting
351
351
352
352
### "Failed to call `useTranslations` because the context from `NextIntlClientProvider` was not found." [#missing-context]
0 commit comments