This repository has been archived on 2024-09-22. You can view files and clone it, but cannot push or open issues or pull requests.
zep/next.config.mjs
2021-12-04 16:04:10 +00:00

15 lines
307 B
JavaScript

import withAnalyzer from '@next/bundle-analyzer'
/**
* @type {import('next').NextConfig}
*/
const nextConfig = {
compress: true,
productionBrowserSourceMaps: true,
}
export default withAnalyzer({
enabled:
process.env.ANALYZE === 'true' && process.env.NODE_ENV !== 'production',
})(nextConfig)