Add pipecat-based backend with WebRTC/WS voice routes, Next.js frontend, and Docker Compose orchestration. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
169 B
TypeScript
9 lines
169 B
TypeScript
import type { NextConfig } from "next";
|
|
|
|
const nextConfig: NextConfig = {
|
|
/* config options here */
|
|
allowedDevOrigins: ["127.0.0.1"],
|
|
};
|
|
|
|
export default nextConfig;
|