Files
Homarr/next.config.js

17 lines
342 B
JavaScript
Raw Normal View History

const { env } = require('process');
2022-04-24 22:36:47 +02:00
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
images: {
domains: ['cdn.jsdelivr.net'],
},
2022-05-21 10:28:19 +02:00
reactStrictMode: false,
experimental: {
outputStandalone: true,
},
2022-07-06 18:08:03 +02:00
output: 'standalone',
2022-04-24 22:36:47 +02:00
});