mirror of
https://github.com/mantinedev/next-app-template.git
synced 2025-11-10 04:22:01 +10:00
18 lines
383 B
JavaScript
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";`,
|
|
},
|
|
});
|