Files
Homarr/next.config.js
Thomas Camlong be770d282a ⬆️ Upgrade NextJS version
2022-07-06 18:08:03 +02:00

15 lines
312 B
JavaScript

const { env } = require('process');
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
reactStrictMode: false,
eslint: {
ignoreDuringBuilds: true,
},
output: 'standalone',
basePath: env.BASE_URL,
});