mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-02 11:36:01 +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,
|
|
},
|
|
});
|