Skip to content

Commit 053a5df

Browse files
committedDec 5, 2023
fix: exclude vite-plugin-checker from runtime vitest config
1 parent 5b18911 commit 053a5df

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed
 

‎src/config.ts

+6-4
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ async function startNuxtAndGetViteConfig(
5454
return promise
5555
}
5656

57+
const excludedPlugins = [
58+
'nuxt:import-protection',
59+
'vite-plugin-checker',
60+
]
61+
5762
export async function getVitestConfigFromNuxt(
5863
options?: GetVitestConfigOptions,
5964
overrides?: NuxtConfig
@@ -67,10 +72,7 @@ export async function getVitestConfigFromNuxt(
6772
})
6873
}
6974

70-
options.viteConfig.plugins ||= []
71-
options.viteConfig.plugins = options.viteConfig.plugins?.filter(
72-
p => (p as any)?.name !== 'nuxt:import-protection'
73-
)
75+
options.viteConfig.plugins = (options.viteConfig.plugins || []).filter(p => !excludedPlugins.includes((p as any)?.name))
7476

7577
const resolvedConfig = defu(
7678
// overrides

0 commit comments

Comments
 (0)