mirror of
https://github.com/CopilotKit/CopilotKit.git
synced 2026-09-14 16:26:20 +08:00
8dca50f422
CI's check-config-allowlist failed on the new daytona-runcode showcase. Rather than just adding an .mjs row, convert to .ts to match the dominant pattern across examples/showcases/* (the .mjs predates the Next 14 TS-config support and is only kept in a handful of older showcases — banking, enterprise-brex, orca, presentation). New showcases should follow the .ts convention. - Replace examples/showcases/daytona-runcode/next.config.mjs with an equivalent next.config.ts (empty config, same behavior). - Add the new path to .github/config-allowlist.txt in alphabetical position (between chatkit-studio/.../world and deep-agents-finance-erp). - Verified locally: bash .github/scripts/check-config-allowlist.sh passes. OSS-222
6 lines
104 B
TypeScript
6 lines
104 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {};
|
|
|
|
export default nextConfig;
|