You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am generating a static Nuxt 3 build but I am getting the following warning in my console
WARN [intlify] The message format compilation is not supported in this build. Because message compiler isn't included. You need to pre-compilation all message format. So translate function return 'message.header'.
I am using adding "@intlify/nuxt3" to nuxt modules with the intlify object and some messages.
I am rendering the translations as follows: {{ $t("mainLayout.header") }}
Any ideas what is causing this?
The text was updated successfully, but these errors were encountered:
I also encountered this issue, and the possible reason is that the initialization of vue-i18n failed due to the lack of config. However, the official example does not require the use of this configuration, so I think it might be a BUG.
I am generating a static Nuxt 3 build but I am getting the following warning in my console
WARN [intlify] The message format compilation is not supported in this build. Because message compiler isn't included. You need to pre-compilation all message format. So translate function return 'message.header'.
I am using adding "@intlify/nuxt3" to nuxt modules with the intlify object and some messages.
I am rendering the translations as follows:
{{ $t("mainLayout.header") }}
Any ideas what is causing this?
The text was updated successfully, but these errors were encountered: