mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-01 19:15:56 +01:00
14 lines
275 B
JavaScript
14 lines
275 B
JavaScript
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
});
|
|
|
|
module.exports = withBundleAnalyzer({
|
|
reactStrictMode: true,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
experimental: {
|
|
outputStandalone: true,
|
|
},
|
|
});
|