mirror of
https://github.com/ClipFusion-org/clipfusion.git
synced 2025-08-03 00:45:08 +00:00
9 lines
239 B
TypeScript
9 lines
239 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
generateBuildId: () => (process.env.NEXT_PUBLIC_GIT_COMMIT ? process.env.NEXT_PUBLIC_GIT_COMMIT : null)
|
|
};
|
|
|
|
export default nextConfig;
|