Files
Homarr/next.config.js

11 lines
224 B
JavaScript
Raw Normal View History

2022-04-24 22:36:47 +02:00
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
reactStrictMode: true,
eslint: {
ignoreDuringBuilds: true,
},
});