mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-03 12:05:57 +01:00
11 lines
224 B
JavaScript
11 lines
224 B
JavaScript
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
||
|
|
enabled: process.env.ANALYZE === 'true',
|
||
|
|
});
|
||
|
|
|
||
|
|
module.exports = withBundleAnalyzer({
|
||
|
|
reactStrictMode: true,
|
||
|
|
eslint: {
|
||
|
|
ignoreDuringBuilds: true,
|
||
|
|
},
|
||
|
|
});
|