From 611f0b211a1fe20ae4719d7d67b2ae815b3f0dff Mon Sep 17 00:00:00 2001 From: Chris Fougner Date: Sat, 7 Oct 2023 10:09:06 +0200 Subject: [PATCH] docs: make it more explicit where options go (#4266) --- docs/config/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/config/index.md b/docs/config/index.md index 66779680059b..310294949f64 100644 --- a/docs/config/index.md +++ b/docs/config/index.md @@ -22,7 +22,7 @@ import { defineConfig } from 'vite' export default defineConfig({ test: { - // ... + // ... Specify options here. }, }) ``` @@ -34,7 +34,7 @@ import { defineConfig } from 'vitest/config' export default defineConfig({ test: { - // ... + // ... Specify options here. }, }) ```