Files
Homarr/next.config.js
2022-07-22 13:18:46 +02:00

11 lines
239 B
JavaScript

const { env } = require('process');
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
reactStrictMode: false,
output: 'standalone',
});