From 38c62a7db3850c5ce1c2d9ec4af00fee6a72227c Mon Sep 17 00:00:00 2001 From: Chad Bailey Date: Thu, 6 Feb 2025 01:31:05 +0000 Subject: [PATCH] more cleanup --- .../storytelling-chatbot/frontend/next.config.mjs | 15 --------------- 1 file changed, 15 deletions(-) delete mode 100644 examples/storytelling-chatbot/frontend/next.config.mjs 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;