Skip to content

Commit

Permalink
Update i18n fields in docs (#26492)
Browse files Browse the repository at this point in the history
Closes: #24991

## Documentation / Examples

- [x] Make sure the linting passes
  • Loading branch information
ijjk committed Jun 22, 2021
1 parent 917a9ac commit c9119f8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
3 changes: 3 additions & 0 deletions docs/advanced-features/i18n-routing.md
Expand Up @@ -52,6 +52,9 @@ module.exports = {
{
domain: 'example.fr',
defaultLocale: 'fr',
// an optional http field can also be used to test
// locale domains locally with http instead of https
http: true,
},
],
},
Expand Down
1 change: 1 addition & 0 deletions docs/api-reference/next/router.md
Expand Up @@ -49,6 +49,7 @@ The following is the definition of the `router` object returned by both [`useRou
- `locale`: `String` - The active locale (if enabled).
- `locales`: `String[]` - All supported locales (if enabled).
- `defaultLocale`: `String` - The current default locale (if enabled).
- `domainLocales`: `Array<{domain, defaultLocale, locales}>` - Any configured domain locales.
- `isReady`: `boolean` - Whether the router fields are updated client-side and ready for use. Should only be used inside of `useEffect` methods and not for conditionally rendering on the server.
- `isPreview`: `boolean` - Whether the application is currently in [preview mode](/docs/advanced-features/preview-mode.md).

Expand Down

0 comments on commit c9119f8

Please sign in to comment.