mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-01 11:06:02 +01:00
11 lines
239 B
JavaScript
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',
|
|
});
|