laconic-dot-com/next.config.js
2022-04-06 14:44:09 -03:00

11 lines
270 B
JavaScript

const withPlugins = require('next-compose-plugins')
const withBundleAnalyzer = require('@next/bundle-analyzer')
module.exports = withPlugins(
[withBundleAnalyzer({ enabled: process.env.ANALYZE === 'true' })],
{
reactStrictMode: false,
swcMinify: true
}
)