From b7cda2f939f4d72fa7c3563d1a76a79bbc344392 Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Thu, 26 Jun 2025 18:40:46 +0900 Subject: [PATCH 1/2] docs: add vite 6 docs to version dropdown --- .vitepress/config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index 177335e4..ab1e18b0 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -38,6 +38,10 @@ const additionalTitle = ((): string => { })() const versionLinks = ((): DefaultTheme.NavItemWithLink[] => { const oldVersions: DefaultTheme.NavItemWithLink[] = [ + { + text: 'Vite 6 ドキュメント', + link: 'https://v6.vite.dev', + }, { text: 'Vite 5 ドキュメント', link: 'https://v5.vite.dev', @@ -61,7 +65,7 @@ const versionLinks = ((): DefaultTheme.NavItemWithLink[] => { case 'local': return [ { - text: 'Vite 6 ドキュメント(リリース)', + text: 'Vite 7 ドキュメント(リリース)', link: 'https://vite.dev', }, ...oldVersions, From 69deb4a0b29976ee138e81569dfc4378b7a7f90d Mon Sep 17 00:00:00 2001 From: Jun Shindo <46585162+jay-es@users.noreply.github.com> Date: Thu, 26 Jun 2025 18:44:47 +0900 Subject: [PATCH 2/2] =?UTF-8?q?=E8=A1=8C=E6=95=B0=E3=82=92=E5=90=88?= =?UTF-8?q?=E3=82=8F=E3=81=9B=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .vitepress/config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.vitepress/config.ts b/.vitepress/config.ts index ab1e18b0..b4076f6c 100644 --- a/.vitepress/config.ts +++ b/.vitepress/config.ts @@ -5,6 +5,8 @@ import { groupIconMdPlugin, groupIconVitePlugin, } from 'vitepress-plugin-group-icons' + + import { buildEnd } from './buildEnd.config' const ogDescription = '次世代フロントエンドツール'