From 0776442a5fad268a827950adeadd427949a3e69b Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 31 Oct 2024 10:29:29 +0100 Subject: [PATCH] Silence deprecation warning caused by old bootstrap import --- dashboard/vite.config.mjs | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/vite.config.mjs b/dashboard/vite.config.mjs index 4bc251f87..13c674327 100644 --- a/dashboard/vite.config.mjs +++ b/dashboard/vite.config.mjs @@ -38,6 +38,7 @@ export default defineConfig({ api: 'modern-compiler', importers: [ new NodePackageImporter() ], quietDeps: true, + silenceDeprecations: [ 'import', 'global-builtin' ], }, }, },