From a1f6520a82a6a82b3fbebb590b000bce6f383ab2 Mon Sep 17 00:00:00 2001 From: Daniel Lo Nigro Date: Sun, 8 Feb 2026 15:41:48 -0800 Subject: [PATCH] [vite] Update silenced SCSS deprecations - There's ~78 violations of `if-function` - Silencing `mixed-decls` now throws this warning: ``` Warning: mixed-decls deprecation is obsolete. If you were previously silencing it, your code may now behave in unexpected ways. ``` and removing it from the silenceDeprecations list works (no errors or warnings are output as a result). --- site/src/content/docs/getting-started/vite.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/site/src/content/docs/getting-started/vite.mdx b/site/src/content/docs/getting-started/vite.mdx index ad691c79b13c..748bfceaa3f2 100644 --- a/site/src/content/docs/getting-started/vite.mdx +++ b/site/src/content/docs/getting-started/vite.mdx @@ -97,8 +97,8 @@ With dependencies installed and our project folder ready for us to start coding, preprocessorOptions: { scss: { silenceDeprecations: [ + 'if-function', 'import', - 'mixed-decls', 'color-functions', 'global-builtin', ],