From 94db93786d9d61d37e270e63f1a036c0f24f3e8c Mon Sep 17 00:00:00 2001 From: Christophe Coevoet Date: Thu, 9 Oct 2025 17:29:24 +0200 Subject: [PATCH] Silence the Sass deprecation warning for imports This will be removed from the silenced list when performing the migration to Sass modules. --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index 6b0effb..6adc4b9 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -80,6 +80,7 @@ module.exports = { options: { sassOptions: { quietDeps: true, + silenceDeprecations: ['import'], // TODO remove this when migrating to Sass modules loadPaths: [ path.join(__dirname, 'node_modules'), ]