const withPlugins = require('next-compose-plugins') const withBundleAnalyzer = require('@next/bundle-analyzer') module.exports = withPlugins( [withBundleAnalyzer({ enabled: process.env.ANALYZE === 'true' })], { reactStrictMode: false, swcMinify: true } )