tenantpilot/next.config.ts
2025-12-05 21:00:49 +01:00

10 lines
219 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone", // Erforderlich für Docker-Deployment
reactCompiler: true,
};
export default nextConfig;