| Zeile 328: |
Zeile 328: |
| | export default MyApp; | | export default MyApp; |
| | </pre> | | </pre> |
| | + | |
| | + | ======= Deprecation-Warnings ======= |
| | + | |
| | + | Die Deprecation-Warnings wegen CSS-if und use statt import können verhindert werden, indem in der <code>next.config.js</code> eine sassOptions-Property für die nextConfig gesetzt wird: |
| | + | |
| | + | <pre> |
| | + | sassOptions: { |
| | + | silenceDeprecations: [ |
| | + | "if-function", |
| | + | "color-functions", |
| | + | "global-builtin", |
| | + | "import", |
| | + | ], |
| | + | }, |
| | + | </pre> |
| | + | |
| | + | Siehe https://github.com/twbs/bootstrap/issues/40962#issuecomment-3450181125 |
| | | | |
| | ====== Themes ====== | | ====== Themes ====== |