UNPKG
@intl-t/next
Version:
latest (1.0.4)
1.0.4
1.0.3
1.0.2
1.0.2-0
1.0.1
1.0.0
1.0.0-rc.108
1.0.0-rc.107
1.0.0-rc.106
1.0.0-rc.105
1.0.0-rc.104
1.0.0-rc.103
1.0.0-rc.102
1.0.0-rc.101
1.0.0-rc.100
1.0.0-rc.99
1.0.0-rc.98
1.0.0-rc.97
1.0.0-rc.96
A Fully-Typed Object-Based i18n Translation Library for Next.js
intl-t.dev
nivandres/intl-t
@intl-t/next
/
dist
/
root.js
9 lines
(8 loc)
•
256 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
import
{ unstable_rootParams
as
rootParams }
from
"next/server"
;
export
async
function
getRootParamsLocale
(
) {
const
{ locale } =
await
rootParams
();
// @ts-ignore
if
(
this
?.
settings
)
this
.
settings
.
locale
= locale;
return
locale; }