We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
vite-plugin-checker
1 parent 5b18911 commit 053a5dfCopy full SHA for 053a5df
src/config.ts
@@ -54,6 +54,11 @@ async function startNuxtAndGetViteConfig(
54
return promise
55
}
56
57
+const excludedPlugins = [
58
+ 'nuxt:import-protection',
59
+ 'vite-plugin-checker',
60
+]
61
+
62
export async function getVitestConfigFromNuxt(
63
options?: GetVitestConfigOptions,
64
overrides?: NuxtConfig
@@ -67,10 +72,7 @@ export async function getVitestConfigFromNuxt(
67
72
})
68
73
69
74
70
- options.viteConfig.plugins ||= []
71
- options.viteConfig.plugins = options.viteConfig.plugins?.filter(
- p => (p as any)?.name !== 'nuxt:import-protection'
- )
75
+ options.viteConfig.plugins = (options.viteConfig.plugins || []).filter(p => !excludedPlugins.includes((p as any)?.name))
76
77
const resolvedConfig = defu(
78
// overrides
0 commit comments