From f72c886d3a2366e304ccf2b0cf67c6dbdb1b73e9 Mon Sep 17 00:00:00 2001 From: Bobbie Goede Date: Tue, 25 Mar 2025 10:07:58 +0100 Subject: [PATCH] docs(i18n): remove `next` tag from `@nuxtjs/i18n` installation (#3675) --- docs/content/1.getting-started/7.i18n/1.nuxt.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/content/1.getting-started/7.i18n/1.nuxt.md b/docs/content/1.getting-started/7.i18n/1.nuxt.md index e3315633..4f64b5e3 100644 --- a/docs/content/1.getting-started/7.i18n/1.nuxt.md +++ b/docs/content/1.getting-started/7.i18n/1.nuxt.md @@ -136,19 +136,19 @@ To dynamically switch between languages, you can use the [Nuxt I18n](https://i18 ::code-group{sync="pm"} ```bash [pnpm] -pnpm add @nuxtjs/i18n@next +pnpm add @nuxtjs/i18n ``` ```bash [yarn] -yarn add @nuxtjs/i18n@next +yarn add @nuxtjs/i18n ``` ```bash [npm] -npm install @nuxtjs/i18n@next +npm install @nuxtjs/i18n ``` ```bash [bun] -bun add @nuxtjs/i18n@next +bun add @nuxtjs/i18n ``` ::