diff --git a/client/package-lock.json b/client/package-lock.json index 1dc3dd85f7..e0e413098c 100644 --- a/client/package-lock.json +++ b/client/package-lock.json @@ -19,7 +19,7 @@ "@reduxjs/toolkit": "^2.8.2", "@sentry/react": "^10.38.0", "@sentry/react-router": "^10.38.0", - "bootstrap": "^5.3.3", + "bootstrap": "^5.3.8", "classnames": "^2.3.2", "compression": "^1.8.1", "cookie": "^1.1.1", @@ -38,7 +38,7 @@ "query-string": "^6.14.1", "react": "^19.2.4", "react-autosuggest": "^10.1.0", - "react-bootstrap-icons": "^1.10.3", + "react-bootstrap-icons": "^1.11.6", "react-cookie-consent": "^8.0.1", "react-dom": "^19.2.4", "react-hook-form": "^7.71.1", diff --git a/client/package.json b/client/package.json index 84c6c38f2b..10091cc2eb 100644 --- a/client/package.json +++ b/client/package.json @@ -64,7 +64,7 @@ "@reduxjs/toolkit": "^2.8.2", "@sentry/react": "^10.38.0", "@sentry/react-router": "^10.38.0", - "bootstrap": "^5.3.3", + "bootstrap": "^5.3.8", "classnames": "^2.3.2", "compression": "^1.8.1", "cookie": "^1.1.1", @@ -83,7 +83,7 @@ "query-string": "^6.14.1", "react": "^19.2.4", "react-autosuggest": "^10.1.0", - "react-bootstrap-icons": "^1.10.3", + "react-bootstrap-icons": "^1.11.6", "react-cookie-consent": "^8.0.1", "react-dom": "^19.2.4", "react-hook-form": "^7.71.1", diff --git a/client/vite.config.ts b/client/vite.config.ts index 0116ef61b6..8bc7a5a285 100644 --- a/client/vite.config.ts +++ b/client/vite.config.ts @@ -40,4 +40,18 @@ export default defineConfig(({ isSsrBuild }) => ({ "~bootstrap": resolve(__dirname, "node_modules/bootstrap"), }, }, + css: { + preprocessorOptions: { + scss: { + api: "modern-compiler", + // See: https://github.com/twbs/bootstrap/issues/40849 + silenceDeprecations: [ + "color-functions", + "import", + "global-builtin", + "if-function", + ], + }, + }, + }, }));