[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

docs: update links

Vladimir Sheremet (Dec 26, 2025, 1:41 PM +0100) 0ee55a4d 017e1ee6

+14 -6
+14 -6
docs/.vitepress/config.ts
··· 1 - import { defineConfig } from 'vitepress' 2 - import { withPwa } from '@vite-pwa/vitepress' 3 1 import { transformerTwoslash } from '@shikijs/vitepress-twoslash' 2 + import { withPwa } from '@vite-pwa/vitepress' 3 + import { defineConfig } from 'vitepress' 4 4 import { version } from '../../package.json' 5 + import { teamMembers } from './contributors' 5 6 import { 6 7 contributing, 7 8 discord, ··· 17 18 } from './meta' 18 19 import { pwa } from './scripts/pwa' 19 20 import { transformHead } from './scripts/transformHead' 20 - import { teamMembers } from './contributors' 21 21 22 22 export default ({ mode }: { mode: string }) => { 23 23 return withPwa(defineConfig({ ··· 154 154 link: 'https://main.vitest.dev/', 155 155 }, 156 156 { 157 - text: 'v0.x', 158 - link: 'https://v0.vitest.dev/', 157 + text: 'v4.x', 158 + link: 'https://v4.vitest.dev/', 159 + }, 160 + { 161 + text: 'v3.x', 162 + link: 'https://v3.vitest.dev/', 159 163 }, 160 164 { 161 165 text: 'v2.x', 162 - link: 'https://vitest.dev/', 166 + link: 'https://v2.vitest.dev/', 167 + }, 168 + { 169 + text: 'v0.x', 170 + link: 'https://v0.vitest.dev/', 163 171 }, 164 172 ], 165 173 },