Files
ai-agent-scaffold-go/frontend/next.config.ts
2026-05-30 23:16:49 +08:00

9 lines
157 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
/* config options here */
output: "standalone",
};
export default nextConfig;