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/content/docs/02.guide/91.new-features.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,6 +24,13 @@ definePageMeta({
24
24
</script>
25
25
```
26
26
27
+
### Nitro-side language detection and redirection
28
+
Language detection and redirection has been reimplemented to be handled from the Nitro server, this allows us to redirect requests earlier in the request lifecycle which improves performance.
29
+
30
+
The previous implementation did not work correctly when combined with prerendering which this new implementation does.
31
+
32
+
While this change makes detection and redirection more accurate and should better match the documented behavior, if this causes issues in your project it can be disabled by setting `experimental.nitroContextDetection: false`{lang="yml"} in the module options. The option to disable this feature is temporary and will be removed in a future version.
33
+
27
34
### Experimental strict SEO mode
28
35
We have added a new experimental option `strictSeo`{lang="yml"} that enables strict SEO mode, which changes the way i18n head tags are handled.
0 commit comments