Files
cladm/site/next.config.ts
Alejandro Gutiérrez bd3df2be9c feat: add Dockerfile and standalone output for site deployment
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-24 02:19:15 +00:00

8 lines
129 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: "standalone",
};
export default nextConfig;