N
Nuxt2w ago
Uzyxen

i18n [plugin:nuxtjs:i18n-resource] Cannot read properties of undefined (reading 'options')

I downloaded NuxtI18n, added
i18n: {
vueI18n: './i18n.config.ts' ,
bundle: {
optimizeTranslationDirective: false,
},
locales: [
{ code: 'en', language: 'en-US' },
{ code: 'nl', language: 'nl-NL' }
],
defaultLocale: 'en',
},
i18n: {
vueI18n: './i18n.config.ts' ,
bundle: {
optimizeTranslationDirective: false,
},
locales: [
{ code: 'en', language: 'en-US' },
{ code: 'nl', language: 'nl-NL' }
],
defaultLocale: 'en',
},
to my nuxt.config.ts, and
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
nl: {
welcome: 'Welkom'
}
}
}));
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
nl: {
welcome: 'Welkom'
}
}
}));
to i18n/i18n.config.ts, but I have error [plugin:nuxtjs:i18n-resource] Cannot read properties of undefined (reading 'options') /Users/uzyxen/Desktop/active-projects/<project-name>/i18n/i18n.config.ts
11 Replies
kapa.ai
kapa.ai2w ago
Hi @Uzyxen. I'm kapa.ai, your friendly support bot. I will try to answer your question by searching through the knowledge base. :wave: ---------------------- Based on the error you're encountering, there seems to be an issue with your i18n configuration. The error "[plugin:nuxtjs:i18n-resource] Cannot read properties of undefined (reading 'options')" typically occurs when there's a mismatch in your configuration setup. Here are a few issues I can identify: 1. Your i18n configuration file is in the wrong location. According to your error message, you have it at i18n/i18n.config.ts, but in your Nuxt config, you're referencing it as './i18n.config.ts'. 2. Several users have reported similar issues when upgrading Nuxt or the i18n module, as seen in this GitHub issue. Here's how to fix it: 1. Move your i18n.config.ts file to the root directory of your project (same level as nuxt.config.ts) 2. Make sure your nuxt.config.ts points to the correct location:
i18n: {
vueI18n: './i18n.config.ts',
// other config...
}
i18n: {
vueI18n: './i18n.config.ts',
// other config...
}
3. If you're still having issues, try simplifying your configuration. Based on this Stack Overflow solution, a minimal working configuration would be:
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxtjs/i18n'],
i18n: {
vueI18n: './i18n.config.ts'
}
})

// i18n.config.ts (in root directory)
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
nl: {
welcome: 'Welkom'
}
}
}))
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxtjs/i18n'],
i18n: {
vueI18n: './i18n.config.ts'
}
})

// i18n.config.ts (in root directory)
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
nl: {
welcome: 'Welkom'
}
}
}))
If you're still experiencing issues, it might be related to version compatibility between Nuxt and the i18n module. Make sure you're using compatible versions, as some users have reported needing to update both Nuxt and the i18n module to resolve similar errors. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai2w ago
<@361925793397473281> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
HugoRCD
HugoRCD2w ago
@Uzyxen Your i18n.config.ts must be in the root, not in an i18n folder 🤔
Uzyxen
UzyxenOP2w ago
when I moved i18n.config.ts to the root I get the message [@nuxtjs/i18n 8:22:47 PM] WARN Vue I18n configuration file ./i18n.config.ts not found in /Users/uzyxen/Desktop/active-projects/<project-name>/i18n. Skipping... @kapa.ai
kapa.ai
kapa.ai2w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- Based on the warning message you're receiving, it seems that the i18n module is still looking for your configuration file in the wrong location. The warning indicates it's searching for i18n.config.ts inside an /i18n directory, but you've moved it to the root directory as suggested. There are a couple of ways to fix this issue: 1. Make sure your path in the Nuxt config is correct. If your file is in the root directory, try using an absolute path reference:
i18n: {
vueI18n: '~/i18n.config.ts'
}
i18n: {
vueI18n: '~/i18n.config.ts'
}
The ~ alias in Nuxt refers to the project root directory, which should help resolve the path correctly. 2. Alternatively, you could try using a relative path with proper notation:
i18n: {
vueI18n: '../i18n.config.ts'
}
i18n: {
vueI18n: '../i18n.config.ts'
}
This issue is similar to what was discussed in this GitHub issue, where aliases inside certain Nuxt configurations weren't resolving correctly. If you're using a recent version of Nuxt (3.16+) and i18n (9.x+), be aware that there have been some structural changes in how i18n works. According to this GitHub comment, from i18n v9.x, it's expected that you have your i18n folder outside the app directory. You might also want to check if you need to add the restructureDir: false option to your i18n config if you're using a specific directory structure, as mentioned in this GitHub comment. If these solutions don't work, please share your Nuxt and i18n versions so I can provide more specific guidance. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai2w ago
<@361925793397473281> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
HugoRCD
HugoRCD2w ago
@Uzyxen You can look at this repo if you like for the i18n config, but be careful, it uses compatibility v4 (the new Nuxt 4 structure) https://github.com/HugoRCD/canvas
GitHub
GitHub - HugoRCD/canvas: Portfolio template made with Nuxt 3, Nuxt ...
Portfolio template made with Nuxt 3, Nuxt Content v3, NuxtUI v3 and TailwindCSS v4 - HugoRCD/canvas
Uzyxen
UzyxenOP2w ago
Thank You, I'll see it soon idk what im doing wrong. i18n.config.ts in the root:
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
nl: {
welcome: 'Welkom'
}
}
}));
export default defineI18nConfig(() => ({
legacy: false,
locale: 'en',
messages: {
en: {
welcome: 'Welcome'
},
nl: {
welcome: 'Welkom'
}
}
}));
and nuxt.config.ts:
i18n: {
bundle: {
optimizeTranslationDirective: false,
},
locales: [
{ code: 'en', language: 'en-US' },
{ code: 'nl', language: 'nl-NL' }
],
strategy: 'prefix',
defaultLocale: 'en',
vueI18n: '~/i18n.config.ts' ,
},
i18n: {
bundle: {
optimizeTranslationDirective: false,
},
locales: [
{ code: 'en', language: 'en-US' },
{ code: 'nl', language: 'nl-NL' }
],
strategy: 'prefix',
defaultLocale: 'en',
vueI18n: '~/i18n.config.ts' ,
},
and im still getting:
ERROR Internal server error: Cannot read properties of undefined (reading 'options')
Plugin: nuxtjs:i18n-resource
File: /Users/uzyxen/Desktop/active-projects/engravebart/i18n.config.ts

WARN [Vue Router warn]: No match found for location with path "/_nuxt/i18n.config.ts"
ERROR Internal server error: Cannot read properties of undefined (reading 'options')
Plugin: nuxtjs:i18n-resource
File: /Users/uzyxen/Desktop/active-projects/engravebart/i18n.config.ts

WARN [Vue Router warn]: No match found for location with path "/_nuxt/i18n.config.ts"
@kapa.ai
kapa.ai
kapa.ai2w ago
Let me check the knowledge base for you again. One moment! :books: ---------------------- Based on the error message you're seeing, there seems to be an issue with how the i18n module is trying to load your configuration file. Let's address this problem step by step. The error "Cannot read properties of undefined (reading 'options')" suggests that the i18n module can't properly parse your configuration file. This is a common issue that several users have encountered when setting up Nuxt with i18n. Here are some potential solutions: 1. Update your i18n configuration in nuxt.config.ts: Try simplifying your i18n configuration in nuxt.config.ts to just point to the config file:
i18n: {
vueI18n: './i18n.config.ts'
}
i18n: {
vueI18n: './i18n.config.ts'
}
The ~ alias sometimes doesn't work correctly in this context, as seen in similar issues. Using a relative path like ./i18n.config.ts might work better. 2. Check your package versions: This could be a version compatibility issue. According to this GitHub issue comment, some users had to upgrade both Nuxt and the i18n module to resolve similar errors. Make sure you're using compatible versions. 3. Try restructuring your i18n setup: If you're using i18n v9.x, there have been directory structure changes. As mentioned in this GitHub comment, you might need to: - Move all i18n files to <rootDir>/i18n - Or add restructureDir: false to your i18n config 4. Ensure your i18n.config.ts is correctly formatted: Your i18n.config.ts looks correct, but make sure it's being properly exported and that there are no syntax errors. 5. Try a completely fresh approach: Based on this Stack Overflow solution, you could try:
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxtjs/i18n'],
i18n: {
vueI18n: './i18n.config.ts'
}
})
// nuxt.config.ts
export default defineNuxtConfig({
modules: ['@nuxtjs/i18n'],
i18n: {
vueI18n: './i18n.config.ts'
}
})
And keep your i18n.config.ts as is. If you're still experiencing issues after trying these solutions, it might be helpful to check which version of Nuxt and i18n you're using, as there have been significant changes between versions that could affect how configuration works. ---------------------- Note: you can ask me a follow up question by @ mentioning me again :speech_balloon: ----------------------
kapa.ai
kapa.ai2w ago
<@361925793397473281> Kapa.ai is still learning and improving, please let me know how I did by reacting below.
Uzyxen
UzyxenOP2w ago
I added older version (8.0.0) and it works

Did you find this page helpful?