Files
cecilia/next.config.ts
tuna2134 1f0c8a3333 fix
2026-05-27 12:33:51 +09:00

13 lines
244 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
reactCompiler: true,
};
if (process.env.OUTPUT === "standalone") {
nextConfig.output = "standalone";
}
export default nextConfig;