From 002a538e4a68345f921841bdea453f9b3d267598 Mon Sep 17 00:00:00 2001 From: TAKAHASHI Shuuji Date: Fri, 7 Feb 2025 13:38:36 +0900 Subject: [PATCH] docs: fix anchor name: #mode -> #modes (#19379) --- docs/config/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/config/index.md b/docs/config/index.md index e2ed4e905482dd..0ee48e79a0e3e8 100644 --- a/docs/config/index.md +++ b/docs/config/index.md @@ -61,7 +61,7 @@ export default { ## Conditional Config -If the config needs to conditionally determine options based on the command (`serve` or `build`), the [mode](/guide/env-and-mode#mode) being used, if it's an SSR build (`isSsrBuild`), or is previewing the build (`isPreview`), it can export a function instead: +If the config needs to conditionally determine options based on the command (`serve` or `build`), the [mode](/guide/env-and-mode#modes) being used, if it's an SSR build (`isSsrBuild`), or is previewing the build (`isPreview`), it can export a function instead: ```js twoslash import { defineConfig } from 'vite'