mirror of
https://github.com/LaconicNetwork/laconic.com.git
synced 2026-01-13 22:54:07 +00:00
11 lines
270 B
JavaScript
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
|
|
}
|
|
)
|