Internationalization

By default there are two languages ​​in the project, English and Brazilian Portuguese. English is the default language.

To configure i18n in the project you must go to the nuxt.config.js file and create or remove the language.

nuxt.config.js
i18n: {
  locales: [
    {
      code: "en",
      iso: "en",
      file: "en.json",
    },
    {
      code: "br",
      iso: "br",
      file: "br.json",
    },
  ],
  langDir: "locales/",
}