use recommended next.config.js
All checks were successful
/ registry_publish (push) Successful in 1m40s

This commit is contained in:
zramsay 2025-02-05 17:05:41 -05:00
parent 5097c71ff2
commit ba499c4978

View File

@ -1,10 +1,8 @@
const withPlugins = require('next-compose-plugins')
const withBundleAnalyzer = require('@next/bundle-analyzer')
// next.config.js
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: false,
swcMinify: true
}
module.exports = withPlugins(
[withBundleAnalyzer({ enabled: process.env.ANALYZE === 'true' })],
{
reactStrictMode: false,
swcMinify: true
}
)
module.exports = nextConfig