This commit is contained in:
2025-09-26 17:15:54 +08:00
commit db0e5965ec
211 changed files with 40437 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
import type { NextConfig } from "next";
const nextConfig: NextConfig = {
output: 'standalone',
basePath: '/agentic-rag',
assetPrefix: '/agentic-rag',
images: {
unoptimized: true, // 禁用图片优化,使用直接路径
},
async rewrites() {
return [
{
source: '/webchat',
destination: '/',
},
{
source: '/webchat/:path*',
destination: '/:path*',
},
];
},
};
export default nextConfig;