Files
Homarr/next.config.js
2022-08-01 17:12:18 +02:00

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',
});