nuxt3
nuxt3 copied to clipboard
Nuxt 3 Module for vue-i18n-next
readme at https://github.com/intlify/bundle-tools/tree/main/packages/vite-plugin-vue-i18n states that for build you need to set the runtimeOnly option to false. but how to set it in Nuxt3? build fails with `messageCompiler is not a...
Hi team i'm getting this problem in production mode ```import { enUS, viVN } from './locales'``` ``` intlify: { localeDir: 'locales', vueI18n: { locale: 'en-US', messages: { 'en-US': { ...enUS...
export default { // ... buildModules: ['@intlify/nuxt3'], // config for `@intlify/nuxt3` intlify: { vueI18n: 'vue-i18n.mjs' } } vue-i18n.mjs // The configuration must be returned with an **async function**. export default...
**Reporting a bug?** I'm developping a website using the release candidate version of Nuxt3 (and prior to that the beta version). To this end, I of course use @intlify/nuxt3 to...
Project info: ``` ------------------------------ - Operating System: `Windows_NT` - Node Version: `v17.7.2` - Nuxt Version: `3.0.0-27460489.53fbca7` - Package Manager: `[email protected]` - Builder: `vite` - User Config: `buildModules`, `intlify` - Runtime...
How to get rid of this error? `You are running the esm-bundler build of vue-i18n. It is recommended to configure your bundler to explicitly replace feature flag globals with boolean...
Hi, I've just installed "@intlify/nuxt3": "^0.1.10" with "nuxt3": "latest" and added the buildModules: ["@intlify/nuxt3"]. like this: buildModules: ['@intlify/nuxt3'], intlify: { vueI18n: { locale: 'zh', messages: { en: { header: {},footer:{}...
My nuxt3 templates fails to build with a new nuxt version: **PR run:** https://github.com/jojomatik/nuxt-3-base/runs/5617517319?check_suite_focus=true ``` [log] Nuxt CLI v3.0.0-2746048[9](https://github.com/jojomatik/nuxt-3-base/runs/5617517319?check_suite_focus=true#step:7:9).53fbca7 [warn] Error when using sourcemap for reporting an error: Can't resolve...
### Reporting a bug? With a message function, even just a trivial one like: ```js 'someKey': () => 'foo', ``` intlify errors that the key could not be found; if...
**Describe the bug** Using i18n function `$t` with more than one parameter directly in a template shows linting warning. Using it in the `script` section works properly. I've also opened...