Files
next-app-template/next.config.js
Vitaly Rtishchev f5e9f6870b Update sass example
2023-10-12 20:47:06 +04:00

18 lines
383 B
JavaScript

const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
reactStrictMode: false,
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
optimizePackageImports: ['@mantine/core', '@mantine/hooks'],
},
sassOptions: {
prependData: `@import "./_mantine.scss";`,
},
});