vueI18n
string
''
Build-time configuration for Vue I18n options that is used internally by this module. See full documentation at here
Configuration for createI18n
can be passed using a configuration file. By default, the module will scan for a i18n.config{.js,.mjs,.ts}
if nothing is specified.
export default defineNuxtConfig({
modules: ['@nuxtjs/i18n'],
i18n: {
vueI18n: './nuxt-i18n.js' // custom path example
}
})
You need to export default
with plain object or function.
export with plain object example:
export default {
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
fr: {
welcome: 'Bienvenue'
}
}
}
export with function example:
import en from '../locales/en.json'
import fr from '../locales/fr.yaml'
// You can use `defineI18nConfig` to get type inferences for options to pass to vue-i18n.
export default defineI18nConfig(() => {
return {
legacy: false,
locale: 'en',
messages: {
en,
fr
}
}
})
messages
option should be returned by the plain object.That will be pre-compiled in the nuxt i18n module via vue-i18n message-compiler as an executable message in the vue-i18n runtime.