1
1
mirror of https://github.com/theoludwig/theoludwig.git synced 2024-09-09 17:45:53 +02:00
.profile/next.config.js

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