From 83a2544f7f7bc823f2799bcbebeed4b3f4e8b85f Mon Sep 17 00:00:00 2001 From: Dave Roberts Date: Wed, 27 May 2026 14:34:31 +0100 Subject: [PATCH] Update webpack file to silence deprecations we have no control over --- webpack.config.js | 1 + 1 file changed, 1 insertion(+) diff --git a/webpack.config.js b/webpack.config.js index 77cf15399..ccd7b9c08 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -97,6 +97,7 @@ module.exports = (env) => { implementation: sass, sassOptions: { includePaths: ['src/frontend/components'], + quietDeps: true, // Suppresses warnings from dependencies, such as bootstrap, which we do not control and cannot easily fix. This keeps the build output clean and focused on issues we can address. }, }, },