1

it 我已经像这样设置默认值nuxt.config.js

在此处输入图像描述

但是如果我访问 localhost 它重定向到:http://localhost:3000/en 它应该重定向到http://localhost:3000/

我怎么解决这个问题?

4

1 回答 1

4

你应该像这样使用detectBrowserLanguage

例如默认语言环境设置为 FR

[
  'nuxt-i18n',
  {
    locales: ['fr', 'en'],
    defaultLocale: 'fr',
    detectBrowserLanguage: false,
    vueI18n: {
      fallbackLocale: 'en',
      messages: {
        fr: {
          index:'home'
        },
        en: {
          index:'Index'
        }
      }
    }
  }
],
于 2020-09-19T08:43:06.093 回答