diff --git a/examples/storytelling-chatbot/frontend/next.config.mjs b/examples/storytelling-chatbot/frontend/next.config.mjs deleted file mode 100644 index 9fc75242c..000000000 --- a/examples/storytelling-chatbot/frontend/next.config.mjs +++ /dev/null @@ -1,15 +0,0 @@ -/** @type {import('next').NextConfig} */ -const nextConfig = { - output: "export", - - async rewrites() { - return [ - { - source: "/:path*", - destination: "http://localhost:7860/:path*", - }, - ]; - }, -}; - -export default nextConfig;