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: examples/example-app-router-mixed-routing/README.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -9,9 +9,9 @@ An example of how to achieve locale prefixes on public routes while reading the
9
9
10
10
**Relevant parts in app code:**
11
11
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`).
15
15
16
16
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.
0 commit comments