diff --git a/next.config.js b/next.config.js index 2a66511..f77fde0 100644 --- a/next.config.js +++ b/next.config.js @@ -1,10 +1,8 @@ -const withPlugins = require('next-compose-plugins') -const withBundleAnalyzer = require('@next/bundle-analyzer') +// next.config.js +/** @type {import('next').NextConfig} */ +const nextConfig = { + reactStrictMode: false, + swcMinify: true +} -module.exports = withPlugins( - [withBundleAnalyzer({ enabled: process.env.ANALYZE === 'true' })], - { - reactStrictMode: false, - swcMinify: true - } -) +module.exports = nextConfig