Files
pipecat/examples/storytelling-chatbot/client/next.config.mjs

16 lines
257 B
JavaScript

/** @type {import('next').NextConfig} */
const nextConfig = {
output: "export",
async rewrites() {
return [
{
source: "/:path*",
destination: "http://localhost:7860/:path*",
},
];
},
};
export default nextConfig;