Files
2026-07-13 12:58:18 +08:00

18 lines
458 B
TypeScript

import type { NextConfig } from "next";
import dotenv from "dotenv";
dotenv.config({
path: "../../.env",
});
const nextConfig: NextConfig = {
output: "standalone",
serverExternalPackages: ["@copilotkit/runtime"],
/** Bundle prebuilt monorepo shell for full-kit workspace download (see prebuild / pack-download-kit). */
outputFileTracingIncludes: {
"/api/workspace/download": [".download-kit/base.tar.gz"],
},
};
export default nextConfig;