Update all packages to the latest version

This commit is contained in:
Vitaly Rtishchev
2023-11-04 18:27:58 +04:00
parent ad03e8a795
commit 1e771619d7
10 changed files with 474 additions and 343 deletions

15
next.config.mjs Normal file
View File

@ -0,0 +1,15 @@
import bundleAnalyzer from '@next/bundle-analyzer';
const withBundleAnalyzer = bundleAnalyzer({
enabled: process.env.ANALYZE === 'true',
});
export default withBundleAnalyzer({
reactStrictMode: false,
eslint: {
ignoreDuringBuilds: true,
},
experimental: {
optimizePackageImports: ['@mantine/core', '@mantine/hooks'],
},
});