Files
Homarr/next.config.js

15 lines
312 B
JavaScript
Raw Normal View History

const { env } = require('process');
2022-04-24 22:36:47 +02:00
const withBundleAnalyzer = require('@next/bundle-analyzer')({
enabled: process.env.ANALYZE === 'true',
});
module.exports = withBundleAnalyzer({
2022-05-21 10:28:19 +02:00
reactStrictMode: false,
2022-04-24 22:36:47 +02:00
eslint: {
ignoreDuringBuilds: true,
},
2022-07-06 18:08:03 +02:00
output: 'standalone',
basePath: env.BASE_URL,
2022-04-24 22:36:47 +02:00
});