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