mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-14 04:24:06 +00:00
14 lines
335 B
JavaScript
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']
|
|
}
|
|
}
|
|
)
|