Skip to content

Commit

Permalink
chore: suppress rolldown minifier warning
Browse files Browse the repository at this point in the history
  • Loading branch information
sapphi-red committed Dec 26, 2024
1 parent 20fdc12 commit 53d03ed
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions playground/vitestSetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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)
}

Expand Down

0 comments on commit 53d03ed

Please sign in to comment.