Skip to content

Commit 111b0d6

Browse files
authored
docs: Fix typo in example-app-router-mixed-routing README
1 parent f6a845e commit 111b0d6

File tree

1 file changed

+3
-3
lines changed
  • examples/example-app-router-mixed-routing

1 file changed

+3
-3
lines changed

examples/example-app-router-mixed-routing/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ An example of how to achieve locale prefixes on public routes while reading the
99

1010
**Relevant parts in app code:**
1111

12-
1. `src/middleware.ts`: Only run middleware on public pages that need to be localized.
13-
2. `src/i18n/request.ts`: Use the locale from the pathname segment for public routes or return a locale from the user profile for internal app routes.
14-
3. `src/navigation.public.ts`: These are the navigation APIs that automatically consider the `[locale]` segment for public routes. For internal app routes, the navigation APIs from Next.js should be used directly (see `PublicNavigation.tsx` vs `AppNavigation.tsx`).
12+
1. [`src/middleware.ts`](./src/middleware.ts): Only run middleware on public pages that need to be localized.
13+
2. [`src/i18n/request.ts`](./src/i18n/request.ts): Use the locale from the pathname segment for public routes or return a locale from the user profile for internal app routes.
14+
3. [`src/i18n/routing.public.ts`](./src/i18n/routing.public.ts): These are the navigation APIs that automatically consider the `[locale]` segment for public routes. For internal app routes, the navigation APIs from Next.js should be used directly (see `PublicNavigation.tsx` vs `AppNavigation.tsx`).
1515

1616
Note that while this approach works fine, you can alternatively also consider a monorepo setup and build the public and internal app separately if you'd like to separate the code for the two apps.
1717

0 commit comments

Comments
 (0)