Files
payload/next.config.js
2024-02-26 14:55:47 -05:00

7 lines
227 B
JavaScript

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