mirror of
https://github.com/mantinedev/next-app-template.git
synced 2025-11-23 05:01:08 +10:00
14 lines
313 B
JavaScript
14 lines
313 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'],
|
|
},
|
|
});
|