Reactjs – How to navigate when using `Next-intl` and `next/link`
I implemented a next-intl for multi-language support. So my paths look like www.next.com/de or www.next.com/en I'm using NextJS 14. <NextLink href="/support-us">{t("About us")}</NextLink> And when I want to navigate to for example /support-us it must navigate me to /en/support-us instead I…