From a60de743aa30784dcbd27dff64401e8819472d17 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 19 Apr 2024 17:53:47 +0300 Subject: [PATCH] docs: fix import of `defineConfig` --- docs/1.getting-started/11.testing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/1.getting-started/11.testing.md b/docs/1.getting-started/11.testing.md index 8fb1bf24b3..8290dae5b2 100644 --- a/docs/1.getting-started/11.testing.md +++ b/docs/1.getting-started/11.testing.md @@ -415,7 +415,7 @@ If you prefer to use `@vue/test-utils` on its own for unit testing in Nuxt, and 2. Create a `vitest.config.ts` with the following content: ```ts twoslash - import { defineConfig } from 'vite' + import { defineConfig } from 'vitest/config' import vue from '@vitejs/plugin-vue' export default defineConfig({