mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-05 13:05:48 +01:00
16 lines
353 B
JavaScript
16 lines
353 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,
|
||
|
|
transpilePackages: ['@jellyfin/sdk'],
|
||
|
|
});
|