mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-02 03:26:03 +01:00
15 lines
312 B
JavaScript
15 lines
312 B
JavaScript
const { env } = require('process');
|
|
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
});
|
|
|
|
module.exports = withBundleAnalyzer({
|
|
reactStrictMode: false,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
output: 'standalone',
|
|
basePath: env.BASE_URL,
|
|
});
|