diff --git a/playground/vitestSetup.ts b/playground/vitestSetup.ts index 1e2d469c86f5e0..e95db95572a3d4 100644 --- a/playground/vitestSetup.ts +++ b/playground/vitestSetup.ts @@ -113,6 +113,8 @@ beforeAll(async (s) => { // suppress @vue/reactivity-transform warning if (msg.includes('@vue/reactivity-transform')) return if (msg.includes('Generated an empty chunk')) return + // suppress rolldown minifier warning + if (msg.includes('The built-in minifier is still under development')) return warn.call(globalConsole, msg, ...args) }