Skip to content

Commit cc1ced0

Browse files
committed
for now silence the deprecation issues
1 parent 7a8fa31 commit cc1ced0

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

frontend/next.config.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
/** @type {import('next').NextConfig} */
22
const nextConfig = {
33
output: "standalone",
4+
// https://github.com/twbs/bootstrap/issues/40962#issuecomment-3436817277
5+
sassOptions: {
6+
silenceDeprecations: [
7+
"mixed-decls",
8+
"color-functions",
9+
"global-builtin",
10+
"import",
11+
],
12+
},
413
};
514

615
module.exports = nextConfig;

0 commit comments

Comments
 (0)