13 lines
269 B
JavaScript
13 lines
269 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
openAnalyzer: false
|
|
})
|
|
|
|
const nextConfig = withBundleAnalyzer({
|
|
reactStrictMode: true
|
|
})
|
|
|
|
module.exports = nextConfig
|