Overview

Learn how to use i18n in the starter kit.

This starter kit uses nuxt-i18n module to provide internationalization (i18n) support for your application. This allows you to easily manage translations and switch between different languages.

What if I don't need i18n support?

I would highly recommend to not remove the i18n module from your project, even if you don't need it. The i18n module is used in many places in the starter kit, and removing it will require a lot of changes to the code.

Even if you don't want to support multiple languages, you can still use the i18n module to manage your translations. This is especially useful if you want to support multiple languages in the future.

Of course, you can hard code any text in your app, but this is not recommended. The i18n module provides a simple and consistent API for managing translations, and it is much easier to use than hard coding text in your app.