mirror of
https://github.com/ClipFusion-org/clipfusion.git
synced 2025-08-03 15:55:07 +00:00
15 lines
323 B
TypeScript
15 lines
323 B
TypeScript
import type { NextConfig } from "next";
|
|
import { version } from "./package.json";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
generateBuildId: () => (process.env.GIT_COMMIT || null),
|
|
env: {
|
|
BUILD_ID: process.env.GIT_COMMIT,
|
|
VERSION: version
|
|
}
|
|
|
|
};
|
|
|
|
export default nextConfig;
|