Skip to content

Commit

Permalink
fix(cockpit): Silence Sass Deprecation Notice Legacy JS API
Browse files Browse the repository at this point in the history
Da Next.js aktuell noch die Sass Legacy JS API nutzt und das erst mit einem Update von Next.js behoben werden kann, wird dieses Warning vorrübergehend ignoriert.

related: #123
  • Loading branch information
onissen committed Nov 3, 2024
1 parent 8d22d41 commit 9f4306a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion apps/northware-cockpit/next.config.mjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};
const nextConfig = {
sassOptions: {
silenceDeprecations: ["legacy-js-api"],
},
};

export default nextConfig;

0 comments on commit 9f4306a

Please sign in to comment.