Files
cecilia/next.config.ts
tuna2134@コマリン親衛隊 7b9d1b172e Update next.config.ts
2025-04-28 13:23:23 +09:00

12 lines
217 B
TypeScript

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