odl-training-data / next.config.js
midah's picture
Organize codebase: move Docker files to docker/, organize lib/ into api/utils/types, move shared components to ui/, clean up README
7f0b3f0
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
// Enable standalone output for Docker
output: process.env.NODE_ENV === 'production' ? 'standalone' : undefined,
}
module.exports = nextConfig