2022-05-19 02:04:48 +02:00
|
|
|
const { env } = require('process');
|
|
|
|
|
|
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({
|
2022-08-01 17:12:04 +02:00
|
|
|
images: {
|
|
|
|
|
domains: ['cdn.jsdelivr.net'],
|
|
|
|
|
},
|
2022-05-21 10:28:19 +02:00
|
|
|
reactStrictMode: false,
|
2022-07-23 22:22:55 +02:00
|
|
|
experimental: {
|
|
|
|
|
outputStandalone: 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
|
|
|
});
|