myinfomate-landing/next.config.ts

9 lines
152 B
TypeScript

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