Files
Homarr/next.config.js
2022-05-13 04:10:23 +02:00

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,
},
});