在Next.js中将语言更改为小写

juud5qan  于 2022-12-23  发布在  其他
关注(0)|答案(1)|浏览(120)

是否可以在Next.js中以某种方式将URL中的语言“DE”从大写更改为小写?翻译处理正确,但只有URL仍保持大写。

ecfdbz9o

ecfdbz9o1#

我认为您可以使用next.config.js文件完成此操作

// next.config.js
    
    module.exports = {
      i18n: {
        locales: ['default', 'en', 'de', 'fr'],
        defaultLocale: 'default',
        localeDetection: false,
      },
      tr

ailingSlash: true,
}

参考:https://nextjs.org/docs/advanced-features/i18n-routing

相关问题