fix: remove bundle analyzer

This commit is contained in:
2023-09-14 21:15:53 -06:00
parent f11ae1c4f3
commit 14b52a7800
3 changed files with 5 additions and 121 deletions
+2 -9
View File
@@ -1,12 +1,5 @@
/** @type {import('next').NextConfig} */
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
openAnalyzer: false
})
const nextConfig = withBundleAnalyzer({
module.exports = {
reactStrictMode: true
})
module.exports = nextConfig
}