laconic-dot-com/next.config.js
2022-03-28 15:00:11 -03:00

14 lines
335 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,
images: {
formats: ['image/avif', 'image/webp']
}
}
)