Files
Homarr/next.config.js

17 lines
339 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-05-13 04:10:23 +02:00
experimental: {
outputStandalone: true,
},
basePath: env.BASE_URL,
2022-04-24 22:36:47 +02:00
});