mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-03 20:15:57 +01:00
17 lines
342 B
JavaScript
17 lines
342 B
JavaScript
const { env } = require('process');
|
|
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
});
|
|
|
|
module.exports = withBundleAnalyzer({
|
|
images: {
|
|
domains: ['cdn.jsdelivr.net'],
|
|
},
|
|
reactStrictMode: false,
|
|
experimental: {
|
|
outputStandalone: true,
|
|
},
|
|
output: 'standalone',
|
|
});
|