Files
mypage/next.config.analyzer.js
2025-12-02 22:29:24 +00:00

8 lines
205 B
JavaScript

const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
})
const nextConfig = require('./next.config.js')
module.exports = withBundleAnalyzer(nextConfig)