mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 07:25:48 +01:00
Middleware didn't work in v12.2.3. Hopefully the password protection will work again now.
14 lines
290 B
JavaScript
14 lines
290 B
JavaScript
const { env } = require('process');
|
|
|
|
const withBundleAnalyzer = require('@next/bundle-analyzer')({
|
|
enabled: process.env.ANALYZE === 'true',
|
|
});
|
|
|
|
module.exports = withBundleAnalyzer({
|
|
reactStrictMode: false,
|
|
experimental: {
|
|
outputStandalone: true,
|
|
},
|
|
output: 'standalone',
|
|
});
|