19 lines
453 B
TypeScript
19 lines
453 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
sassOptions: {
|
|
// Silence noisy deprecation warnings coming from dependencies like Bootstrap.
|
|
quietDeps: true,
|
|
// Dart Sass deprecations still trigger via @import; explicitly mute them.
|
|
silenceDeprecations: [
|
|
"import",
|
|
"global-builtin",
|
|
"if-function",
|
|
"legacy-js-api",
|
|
"color-functions",
|
|
],
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|