Files
supervisor-ui/next.config.ts

10 lines
284 B
TypeScript
Raw Normal View History

import type { NextConfig } from 'next';
const nextConfig: NextConfig = {
reactStrictMode: true,
// Note: Using default mode (not standalone) to avoid SSR issues with client components
// For Docker, we'll use regular server mode which works fine
};
export default nextConfig;