UNPKG

@winstrike/next-i18next-koa

Version:

The easiest way to translate your NextJs apps. With Koa support only. Forked from 'next-i18next'.

9 lines 274 B
import { parse } from 'url'; import redirectWithoutCache from './redirect-without-cache'; export default ((req, res, lng) => { const { pathname, search } = parse(req.url); redirectWithoutCache(res, pathname.replace(`/${lng}`, `/${lng}/`) + (search || '')); });