Files
pipecat/examples/storytelling-chatbot/frontend/next.config.mjs
2024-05-13 17:09:46 +01:00

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;