Files
Homarr/next.config.js

15 lines
313 B
JavaScript
Raw Normal View History

2022-08-22 09:50:54 +02:00
const { i18n } = require('./next-i18next.config');
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'],
},
2023-01-06 01:06:22 +09:00
reactStrictMode: true,
2022-07-06 18:08:03 +02:00
output: 'standalone',
2022-08-22 09:50:54 +02:00
i18n,
2022-04-24 22:36:47 +02:00
});