mirror of
https://github.com/theoludwig/theoludwig.git
synced 2024-11-03 20:11:30 +01:00
13 lines
277 B
JavaScript
13 lines
277 B
JavaScript
const IS_STANDALONE = process.env.IS_STANDALONE === "true"
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
output: IS_STANDALONE ? "standalone" : undefined,
|
|
eslint: {
|
|
ignoreDuringBuilds: true,
|
|
},
|
|
}
|
|
|
|
module.exports = nextConfig
|